This commit is contained in:
syuilo
2025-03-23 11:20:01 +09:00
parent 92f7532eb3
commit ff4568e1d6
5 changed files with 17 additions and 33 deletions

View File

@@ -87,11 +87,6 @@ const room = ref<Misskey.entities.ChatRoom | null>(null);
const connection = ref<Misskey.ChannelConnection<Misskey.Channels['chat']> | null>(null);
const showIndicator = ref(false);
watch([() => props.userId, () => props.roomId], () => {
if (connection.value) connection.value.dispose();
initialize();
});
async function initialize() {
initializing.value = true;