- Fix duplicate tray icon on macOS when hiding to tray
- Fix tray not showing in background mode on macOS
- Fix hide to tray broken on Windows/Linux
- Fix Shutdown button in web UI not working
This commit is contained in:
decolua
2026-05-16 14:06:56 +07:00
parent 30ff4e3fb0
commit 593c788c75
6 changed files with 43 additions and 16 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ export default function Sidebar({ onClose }) {
const handleShutdown = async () => {
setIsShuttingDown(true);
try {
await fetch("/api/shutdown", { method: "POST" });
await fetch("/api/version/shutdown", { method: "POST" });
} catch (e) {
// Expected to fail as server shuts down; ignore error
}