From: Anthony Minessale Date: Wed, 15 Mar 2017 23:15:31 +0000 (-0500) Subject: FS-10138 X-Git-Tag: v1.8.0~718 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=025833c4423280b8283687d24e32d3f78437cfe0;p=thirdparty%2Ffreeswitch.git FS-10138 --- diff --git a/src/mod/applications/mod_conference/conference_file.c b/src/mod/applications/mod_conference/conference_file.c index caea29b2ba..b9e66f7ba3 100644 --- a/src/mod/applications/mod_conference/conference_file.c +++ b/src/mod/applications/mod_conference/conference_file.c @@ -95,6 +95,12 @@ switch_status_t conference_file_close(conference_obj_t *conference, conference_f conference->canvases[node->canvas_id]->send_keyframe = 1; conference->playing_video_file = 0; } + + if (conference->overlay_video_file) { + conference->canvases[node->canvas_id]->send_keyframe = 1; + conference->overlay_video_file = 0; + } + return switch_core_file_close(&node->fh); }