This commit is contained in:
Timothy Jaeryang Baek 2025-11-30 14:23:08 -05:00
parent d499c3aed8
commit 88decab9be

View file

@ -3,7 +3,7 @@
const i18n = getContext('i18n');
import { user as _user } from '$lib/stores';
import { user as _user, socket } from '$lib/stores';
import { WEBUI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants';
import { getDMChannelByUserId } from '$lib/apis/channels';
@ -25,7 +25,7 @@
});
if (res) {
console.log(res);
$socket.emit('join-channels', { auth: { token: $_user?.token } });
goto(`/channels/${res.id}`);
}
};