1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-01 15:11:21 +01:00

Merge branch 'main' of github.com:immich-app/immich

This commit is contained in:
Alex Tran 2023-02-26 20:58:57 -06:00
commit 1f25df308a
No known key found for this signature in database
GPG key ID: E4954BC787B85C8A

View file

@ -10,6 +10,7 @@
let isServerOk = true;
let serverVersion = '';
let serverInfo: ServerInfoResponseDto;
let pingServerInterval: NodeJS.Timer;
onMount(async () => {
try {
@ -24,9 +25,8 @@
console.log('Error [StatusBox] [onMount]');
isServerOk = false;
}
});
const pingServerInterval = setInterval(async () => {
pingServerInterval = setInterval(async () => {
try {
const { data: pingReponse } = await api.serverInfoApi.pingServer();
@ -40,6 +40,7 @@
isServerOk = false;
}
}, 10000);
});
onDestroy(() => clearInterval(pingServerInterval));