mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(web): log out (#5706)
* fix: logging out * fix: websocket --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
parent
2836b8cda9
commit
502495883d
3 changed files with 8 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue