diff --git a/src/components/Chat.vue b/src/components/Chat.vue index 82d564d..ef82d82 100644 --- a/src/components/Chat.vue +++ b/src/components/Chat.vue @@ -238,6 +238,18 @@ + + + + + + + + + @@ -379,6 +391,9 @@ export default { return this.$matrix.currentRoom; }, roomId() { + if (!this.$matrix.ready) { + return null; // Not ready yet... + } if (this.room) { return this.room.roomId; }