浏览代码

Fixed logging out not redirect correctly in reverse proxy (#414)

* Remove check due to logout always success

* Added console log

* Remove console.log

* Up server version
Alex 3 年之前
父节点
当前提交
03e7a254a2

+ 1 - 1
server/apps/immich/src/constants/server_version.constant.ts

@@ -11,6 +11,6 @@ export interface IServerVersion {
 export const serverVersion: IServerVersion = {
   major: 1,
   minor: 19,
-  patch: 0,
+  patch: 1,
   build: 0,
 };

+ 2 - 5
web/src/lib/components/shared-components/navigation-bar.svelte

@@ -43,11 +43,8 @@
 	};
 
 	const logOut = async () => {
-		const res = await fetch('auth/logout', { method: 'POST' });
-
-		if (res.status == 200 && res.statusText == 'OK') {
-			goto('/auth/login');
-		}
+		await fetch('auth/logout', { method: 'POST' });
+		goto('/auth/login');
 	};
 </script>