Skip to content

Commit ada40b2

Browse files
committed
fix(backend): correct destructuring of stream check result
1 parent edee500 commit ada40b2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

apps/backend/src/workers/stream-check.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,7 @@ async function checkKickStatus(
226226
return null;
227227
}
228228

229-
const { isLive: _isLive, stream } = result.value;
230-
const isLive = true;
229+
const { isLive, stream } = result.value;
231230
return {
232231
isLive: isLive ?? false,
233232
platform: isLive ? StreamPlatform.Kick : null,

0 commit comments

Comments
 (0)