diff --git a/server/notification-providers/matrix.js b/server/notification-providers/matrix.js index cd5c2426a..eeaa9eb91 100644 --- a/server/notification-providers/matrix.js +++ b/server/notification-providers/matrix.js @@ -15,7 +15,7 @@ class Matrix extends NotificationProvider { .slice(0, size); const roomId = notification .internalRoomId - .replaceALl(":", "%3A") + .replaceAll(":", "%3A") .replaceAll("!", "%21"); try { diff --git a/src/components/notifications/Matrix.vue b/src/components/notifications/Matrix.vue index 12c7dad80..acce9466e 100644 --- a/src/components/notifications/Matrix.vue +++ b/src/components/notifications/Matrix.vue @@ -1,17 +1,26 @@