]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-8574 #resolve [hangup a call but still in show calls (uuid_kill result -ERR No...
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 27 Nov 2015 18:42:33 +0000 (12:42 -0600)
committerAnthony Minessale <anthm@freeswitch.org>
Fri, 27 Nov 2015 18:42:40 +0000 (12:42 -0600)
src/mod/applications/mod_conference/conference_video.c

index a540b06cc1ab713ba11662d0d882ba632a526737..ad22ca74f69c01aa04195cd60f3f33a90b2ff06e 100644 (file)
@@ -3446,11 +3446,10 @@ void conference_video_write_frame(conference_obj_t *conference, conference_membe
                                continue;
                        }
                        
-                       if (!isession || !switch_channel_test_flag(imember->channel, CF_VIDEO) ) {
-                               continue;
+                       if (switch_channel_test_flag(imember->channel, CF_VIDEO) ) {
+                               switch_core_session_request_video_refresh(imember->session);    
                        }
-               
-                       switch_core_session_request_video_refresh(imember->session);    
+                       
                        switch_core_session_rwunlock(isession);
                }
        }