Skip to content

Commit

Permalink
fix(recording): Fix transcription opt-in
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
  • Loading branch information
nickvergessen authored Aug 2, 2023
1 parent 93f3ef0 commit ee59f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/RecordingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public function store(Room $room, string $owner, array $file): void {
throw new InvalidArgumentException('owner_permission');
}

if (!$this->serverConfig->getAppValue('spreed', 'call_recording_transcription', 'no') === 'yes') {
if ($this->serverConfig->getAppValue('spreed', 'call_recording_transcription', 'no') === 'yes') {
return;
}

Expand Down

0 comments on commit ee59f08

Please sign in to comment.