Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
mjh1 committed Aug 16, 2023
1 parent 60a30e7 commit 4d76d8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/api/src/controllers/stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,9 +450,9 @@ export async function getRecordingFields(
const isUnused = !session.lastSeen && session.createdAt < readyThreshold;

const recordingStatus = isReady ? "ready" : isUnused ? "none" : "waiting";
if (!isReady && !forceUrl) {
return { recordingStatus };
}
// if (!isReady && !forceUrl) {
// return { recordingStatus };
// }
const recordingUrls = await getRecordingUrls(config, ingest, session);
if (!recordingUrls) {
return { recordingStatus: "waiting" };
Expand Down

0 comments on commit 4d76d8b

Please sign in to comment.