Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Jan 1, 2025
1 parent 45cbc7d commit 8c81f14
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion YoutubeExplode/Playlists/PlaylistController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ await response.Content.ReadAsStringAsync(cancellationToken)
// Some system playlists are unavailable through this endpoint until their page is opened by
// at least one user. If this is the first request, and we haven't retried yet, attempt to
// warm up the playlist by opening its page, and then retry.
if (index <= 0 && string.IsNullOrWhiteSpace(visitorData) && retriesRemaining >= retriesCount)
if (
index <= 0
&& string.IsNullOrWhiteSpace(visitorData)
&& retriesRemaining >= retriesCount
)
{
using (
await http.GetAsync(
Expand Down

0 comments on commit 8c81f14

Please sign in to comment.