Skip to content

Commit 437335f

Browse files
committed
Should be _session_id not just session_id. Maybe this will fix stream disconnections!
1 parent 84b0a3a commit 437335f

File tree

1 file changed

+1
-1
lines changed
  • extension-recorder/src/main/java/io/github/jwdeveloper/tiktok/extension/recorder/impl/data

1 file changed

+1
-1
lines changed

extension-recorder/src/main/java/io/github/jwdeveloper/tiktok/extension/recorder/impl/data/DownloadData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ public class DownloadData {
3434
private String sessionId;
3535

3636
public String getFullUrl() {
37-
return downloadLiveUrl + (downloadLiveUrl.contains("?") ? "&" : "?") + "_webnoredir=1&session_id=" + sessionId;
37+
return downloadLiveUrl + (downloadLiveUrl.contains("?") ? "&" : "?") + "_webnoredir=1&_session_id=" + sessionId;
3838
}
3939
}

0 commit comments

Comments
 (0)