Add error handling to checkStatus() to prevent console errors

The periodic /status check was throwing uncaught promise errors
when the server was unavailable or restarting.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-06 21:48:42 +00:00
parent fa537390c5
commit 7a9599786c

View File

@@ -3114,6 +3114,9 @@
startStream();
}
}
})
.catch(() => {
// Silently ignore - server may be restarting or network issue
});
}