UPDATE: Improved chat tranmission speed by 3seconds

This commit is contained in:
white
2025-01-29 16:50:26 +00:00
parent 83b458ed99
commit 4d9e819b39
5 changed files with 29 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ const StreamerRoute: React.FC = () => {
}
// streamId=0 is a special case for the streamer's latest stream
return isLive ? <VideoPage streamId={0} /> : (streamerName ? <UserPage username={streamerName} /> : <div>Error: Streamer not found</div>);
return isLive ? <VideoPage streamId={1} /> : (streamerName ? <UserPage username={streamerName} /> : <div>Error: Streamer not found</div>);
};
export default StreamerRoute;