Skip to content

Commit cacef97

Browse files
author
valerii
committed
Removed showing popup for RPC service type
1 parent 192f59c commit cacef97

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

app/view/sdl/ServiceUpdatePopUp.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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
},

ffw/BasicCommunicationRPC.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)