File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -193,10 +193,6 @@ SDL.ServiceUpdatePopUp = Em.ContainerView.create(
193193 this . set ( 'content' , 'Starting Audio Stream' ) ;
194194 break ;
195195 }
196- case 'RPC' : {
197- this . set ( 'content' , 'Starting RPC Service' ) ;
198- break ;
199- }
200196 default : break ;
201197 }
202198 } ,
Original file line number Diff line number Diff line change @@ -304,6 +304,9 @@ FFW.BasicCommunication = FFW.RPCObserver
304304 Em . Logger . log ( 'FFW.BasicCommunicationRPC.onRPCNotification' ) ;
305305 this . _super ( ) ;
306306 if ( notification . method == this . onServiceUpdateNotification ) {
307+ if ( 'RPC' === notification . params . serviceType ) {
308+ return ;
309+ }
307310 SDL . ServiceUpdatePopUp . activate ( notification . params . serviceType ,
308311 notification . params . serviceEvent ,
309312 notification . params . reason ) ;
You can’t perform that action at this time.
0 commit comments