Merge pull request #4790 from open-webui/dev

fix
This commit is contained in:
Timothy Jaeryang Baek 2024-08-21 18:33:57 +02:00 committed by GitHub
commit 50d53c6f8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@
import { toast } from 'svelte-sonner';
import { generateInitialsImage, canvasPixelTest } from '$lib/utils';
import { page } from '$app/stores';
import { getBackendConfig } from '$lib/apis';
const i18n = getContext('i18n');
@ -28,6 +29,7 @@
$socket.emit('user-join', { auth: { token: sessionUser.token } });
await user.set(sessionUser);
await config.set(await getBackendConfig());
goto('/');
}
};