Skip to content

Commit

Permalink
Fix simulated leave message for longer string ID rooms in TextRoom (see
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Aug 4, 2023
1 parent 3343814 commit de7f06a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/janus_textroom.c
Original file line number Diff line number Diff line change
Expand Up @@ -3027,7 +3027,7 @@ static void janus_textroom_hangup_media_internal(janus_plugin_session *handle) {
}
janus_mutex_unlock(&session->mutex);
JANUS_LOG(LOG_VERB, "Leaving %d rooms\n", g_list_length(list));
char request[100];
char request[200];
GList *first = list;
while(list) {
char *room_id_str = (char *)list->data;
Expand Down

0 comments on commit de7f06a

Please sign in to comment.