Skip to content

Commit

Permalink
Include query params in oneclick playlist requests (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
Top-Cat authored Oct 28, 2024
1 parent 784f21d commit be6fa51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ModAssistant/Classes/External Interfaces/Playlists.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static async Task DownloadAll(Uri uri)
switch (uri.Host)
{
case "playlist":
Uri url = new Uri($"{uri.LocalPath.Trim('/')}");
Uri url = new Uri($"{uri.PathAndQuery.Trim('/')}");
string filename = await Get(url);
await DownloadFrom(filename);
break;
Expand Down

0 comments on commit be6fa51

Please sign in to comment.