Merge pull request #52 from kohlerpop1/fixes-updates

Changed ? to & as TikTok now sends urls with defined parameters already
This commit is contained in:
David Kohler
2024-02-09 22:36:08 -05:00
committed by GitHub

View File

@@ -34,6 +34,6 @@ public class DownloadData {
private String sessionId; private String sessionId;
public String getFullUrl() { public String getFullUrl() {
return downloadLiveUrl + "?_webnoredir=1&session_id=" + sessionId; return downloadLiveUrl + "&_webnoredir=1&session_id=" + sessionId;
} }
} }