browser tab syn for deleted room

This commit is contained in:
10G Meow 2022-06-19 12:02:32 +03:00
parent a365b5cc26
commit f500fc451c

View file

@ -10,6 +10,11 @@ import messageMixin from "./messageMixin";
export default {
mixins: [messageMixin],
mounted() {
if(this.room.getJoinedMemberCount() === 0) {
this.$navigation.push({ name: "Home", params: { roomId: null } }, -1);
}
}
};
</script>