Skip to content

Commit be6fa51

Browse files
authored
Include query params in oneclick playlist requests (#492)
1 parent 784f21d commit be6fa51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ModAssistant/Classes/External Interfaces/Playlists.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static async Task DownloadAll(Uri uri)
2424
switch (uri.Host)
2525
{
2626
case "playlist":
27-
Uri url = new Uri($"{uri.LocalPath.Trim('/')}");
27+
Uri url = new Uri($"{uri.PathAndQuery.Trim('/')}");
2828
string filename = await Get(url);
2929
await DownloadFrom(filename);
3030
break;

0 commit comments

Comments
 (0)