Merge pull request #735 from TeamPiped/fix-qstring

fix: Always add new query string
This commit is contained in:
Kavin 2023-11-20 05:48:08 +00:00 committed by GitHub
commit 88c9c409ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -149,9 +149,7 @@ public class URLUtils {
}
}
if (qstring != null) {
newUrl += "?" + qstring;
}
newUrl += "?" + qstring;
return newUrl;