Skip to content

Commit

Permalink
use NETWORK from query parameter interlink
Browse files Browse the repository at this point in the history
  • Loading branch information
lostmsu committed Aug 20, 2024
1 parent 4639910 commit a9d6f7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const videoContainer = document.querySelector('.video-container')!;
const video = <HTMLVideoElement>document.getElementById('stream')!;
const videoBitrate = <HTMLInputElement>document.getElementById('video-bitrate');

const NETWORK = null;
const NETWORK = new URLSearchParams(window.location.search).get('interlink');

let controlChannel: RTCDataChannel | null = null;

Expand Down

0 comments on commit a9d6f7d

Please sign in to comment.