diff --git a/html5/verto/verto_communicator/src/partials/menu.html b/html5/verto/verto_communicator/src/partials/menu.html
index 725fb6e628..8dee97b35d 100644
--- a/html5/verto/verto_communicator/src/partials/menu.html
+++ b/html5/verto/verto_communicator/src/partials/menu.html
@@ -38,7 +38,7 @@
- {{ storage.data.called_number && storage.data.userStatus != 'connected' ? 'LAST_CALL' : 'IN_CALL' | translate }} {{ storage.data.called_number }}
+ {{ storage.data.called_number && storage.data.userStatus != 'connected' ? 'LAST_CALL' : 'IN_CALL' | translate }} {{ verto.data.call ? "(" + verto.data.call.params.remote_caller_id_name + ") - " + verto.data.call.params.remote_caller_id_number : storage.data.called_number }}
diff --git a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js
index 12583b4571..1c52808938 100644
--- a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js
+++ b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js
@@ -583,6 +583,9 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
body: body
});
break;
+ case $.verto.enum.message.display:
+ $rootScope.$apply(function() {});
+ break;
default:
console.warn('Got a not implemented message:', msg, dialog, params);
break;