Skip to content

Commit

Permalink
Fixed typo (see #3091)
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Oct 21, 2022
1 parent 9dd5aa8 commit 7bef93e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/janus_videoroom.c
Original file line number Diff line number Diff line change
Expand Up @@ -5078,10 +5078,10 @@ static json_t *janus_videoroom_process_synchronous_request(janus_videoroom_sessi
janus_mutex_unlock(&rooms_mutex);
janus_mutex_lock(&videoroom->mutex);
/* Set recording status */
gboolean room_prev_recording_active = recording_active;
if (room_prev_recording_active != videoroom->record) {
gboolean room_new_recording_active = recording_active;
if (room_new_recording_active != videoroom->record) {
/* Room recording state has changed */
videoroom->record = room_prev_recording_active;
videoroom->record = room_new_recording_active;
/* Iterate over all participants */
gpointer value;
GHashTableIter iter;
Expand Down

0 comments on commit 7bef93e

Please sign in to comment.