File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ public function isCompatibleSignalingServer(IResponse $response): bool {
3636 $ features = explode (', ' , $ featureHeader );
3737 $ features = array_map ('trim ' , $ features );
3838 return in_array ('audio-video-permissions ' , $ features , true )
39+ && in_array ('federation ' , $ features , true )
3940 && in_array ('incall-all ' , $ features , true )
4041 && in_array ('hello-v2 ' , $ features , true )
4142 && in_array ('switchto ' , $ features , true );
Original file line number Diff line number Diff line change @@ -1115,6 +1115,7 @@ Signaling.Standalone.prototype.helloResponseReceived = function(data) {
11151115
11161116 if ( ! this . settings . helloAuthParams . internal
11171117 && ( ! this . hasFeature ( 'audio-video-permissions' )
1118+ || ! this . hasFeature ( 'federation' )
11181119 || ! this . hasFeature ( 'incall-all' )
11191120 || ! this . hasFeature ( 'switchto' ) ) ) {
11201121 showError (
You can’t perform that action at this time.
0 commit comments