Should be _session_id not just session_id. Maybe this will fix stream disconnections!

This commit is contained in:
kohlerpop1
2024-11-25 20:11:23 -05:00
parent 84b0a3aaf4
commit 437335f784

View File

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