Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shinovon committed Aug 29, 2023
1 parent 94e21c8 commit bd931c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jtube/Downloader.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void run() {
if(Settings.httpStream) {
if(Settings.playbackProxy) {
int i = url.indexOf("/videoplayback");
url = Settings.videoplaybackProxy + s.substring(i+14);
url = Settings.videoplaybackProxy + url.substring(i+14);
} else {
url = Settings.serverstream + Util.url(url);
}
Expand Down

0 comments on commit bd931c7

Please sign in to comment.