Skip to content

Commit

Permalink
Merge pull request #735 from TeamPiped/fix-qstring
Browse files Browse the repository at this point in the history
fix: Always add new query string
  • Loading branch information
FireMasterK authored Nov 20, 2023
2 parents 97691ca + 8d04aca commit 88c9c40
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/me/kavin/piped/utils/URLUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,7 @@ public static String rewriteURL(final String old, final String proxy) {
}
}

if (qstring != null) {
newUrl += "?" + qstring;
}
newUrl += "?" + qstring;

return newUrl;

Expand Down

0 comments on commit 88c9c40

Please sign in to comment.