diff --git a/lib/Service/RecordingService.php b/lib/Service/RecordingService.php index b1e67ecefdb..334d7488579 100644 --- a/lib/Service/RecordingService.php +++ b/lib/Service/RecordingService.php @@ -310,6 +310,10 @@ public function notifyAboutFailedStore(Room $room): void { } public function notifyAboutFailedTranscript(string $owner, string $roomToken, int $recordingFileId, string $aiType): void { + if ($aiType === 'transcript') { + return; + } + $userFolder = $this->rootFolder->getUserFolder($owner); $recordingNodes = $userFolder->getById($recordingFileId);