Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
access variable correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
gferraro committed Jul 9, 2021
1 parent de846f1 commit a18ee9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/fileProcessing/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default function (app: Application) {
recording.set("fileKey", newProcessedFileKey);
}
if (complete) {
if (recording.processState != RecordingProcessingState.Reprocess) {
if (recording.processingState != RecordingProcessingState.Reprocess) {
await recordingUtil.sendAlerts(recording.id);
}

Expand Down

0 comments on commit a18ee9a

Please sign in to comment.