mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-15 21:03:47 +00:00
fix: add host issue, screen flickering issue, 2fa issue, open terminal session icon missing issue
This commit is contained in:
@@ -255,10 +255,6 @@ function AppContent({
|
||||
setTimeout(async () => {
|
||||
try {
|
||||
await logoutUser();
|
||||
|
||||
if (isElectron()) {
|
||||
localStorage.removeItem("jwt");
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Logout failed:", error);
|
||||
}
|
||||
|
||||
@@ -309,7 +309,7 @@ export function Auth({
|
||||
"*",
|
||||
);
|
||||
setWebviewAuthSuccess(true);
|
||||
setTimeout(() => window.location.reload(), 100);
|
||||
return;
|
||||
} catch (e) {
|
||||
console.error("Error posting auth success message:", e);
|
||||
}
|
||||
@@ -518,7 +518,6 @@ export function Auth({
|
||||
"*",
|
||||
);
|
||||
setWebviewAuthSuccess(true);
|
||||
setTimeout(() => window.location.reload(), 100);
|
||||
setTotpLoading(false);
|
||||
return;
|
||||
} catch (e) {
|
||||
@@ -655,7 +654,6 @@ export function Auth({
|
||||
"*",
|
||||
);
|
||||
setWebviewAuthSuccess(true);
|
||||
setTimeout(() => window.location.reload(), 100);
|
||||
setOidcLoading(false);
|
||||
return;
|
||||
} catch (e) {
|
||||
|
||||
+24
-2
@@ -1029,7 +1029,7 @@ export async function createSSHHost(hostData: SSHHostData): Promise<SSHHost> {
|
||||
return response.data;
|
||||
}
|
||||
} catch (error) {
|
||||
handleApiError(error, "create SSH host");
|
||||
throw handleApiError(error, "create SSH host");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1107,7 +1107,7 @@ export async function updateSSHHost(
|
||||
return response.data;
|
||||
}
|
||||
} catch (error) {
|
||||
handleApiError(error, "update SSH host");
|
||||
throw handleApiError(error, "update SSH host");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2381,8 +2381,30 @@ export async function logoutUser(): Promise<{
|
||||
}> {
|
||||
try {
|
||||
const response = await authApi.post("/users/logout");
|
||||
|
||||
if (isElectron()) {
|
||||
localStorage.removeItem("jwt");
|
||||
electronSettingsCache.delete("jwt");
|
||||
} else {
|
||||
const isSecure = window.location.protocol === "https:";
|
||||
const cookieString = isSecure
|
||||
? "jwt=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/; Secure; SameSite=Strict"
|
||||
: "jwt=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/; SameSite=Strict";
|
||||
document.cookie = cookieString;
|
||||
}
|
||||
|
||||
return response.data;
|
||||
} catch (error) {
|
||||
if (isElectron()) {
|
||||
localStorage.removeItem("jwt");
|
||||
electronSettingsCache.delete("jwt");
|
||||
} else {
|
||||
const isSecure = window.location.protocol === "https:";
|
||||
const cookieString = isSecure
|
||||
? "jwt=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/; Secure; SameSite=Strict"
|
||||
: "jwt=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/; SameSite=Strict";
|
||||
document.cookie = cookieString;
|
||||
}
|
||||
handleApiError(error, "logout user");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user