1 files changed, 3 insertions, 1 deletions
diff --git a/syweb/webclient/components/matrix/event-handler-service.js b/syweb/webclient/components/matrix/event-handler-service.js
index efe7bf234c..e9540bd5c0 100644
--- a/syweb/webclient/components/matrix/event-handler-service.js
+++ b/syweb/webclient/components/matrix/event-handler-service.js
@@ -188,7 +188,9 @@ function(matrixService, $rootScope, $q, $timeout, $filter, mPresence, notificati
if (event.user_id !== matrixService.config().user_id) {
room.addMessageEvent(event, !isLiveEvent);
- displayNotification(event);
+ if (isLiveEvent) {
+ displayNotification(event);
+ }
}
else {
// we may have locally echoed this, so we should replace the event
|