fix(web): log out (#5706)

* fix: logging out

* fix: websocket

---------

Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
martin 2023-12-15 03:29:05 +01:00 committed by GitHub
parent 2836b8cda9
commit 502495883d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 4 deletions

View file

@ -2,7 +2,6 @@ import type { AssetResponseDto, ServerVersionResponseDto } from '@api';
import { Socket, io } from 'socket.io-client';
import { writable } from 'svelte/store';
import { loadConfig } from './server-config.store';
import { getSavedUser } from './user.store';
export interface ReleaseEvent {
isAvailable: boolean;
@ -26,7 +25,7 @@ let websocket: Socket | null = null;
export const openWebsocketConnection = () => {
try {
if (websocket || !getSavedUser()) {
if (websocket) {
return;
}