Fix #63: Save of settings failed #66
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "batch/63"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Root cause: startRecording() silently caught exceptions without surfacing errors to the user, making the button appear broken when the backend call failed or threw. Since the #error element was removed in the UI redesign, the error was completely invisible. Changes: - Add explicit error message to status element ('❌ ' + err.message) so the user can see why recording didn't start - Add HTTP status to the generic 'Failed to start session' message - Show error in debugInfoEl (visible in current-session-panel) when available - Clean up UI state (remove 'recording' class) on error - Add recordBtnClick() wrapper for onclick attribute as belt-and-suspenders in addition to the addEventListener - Extract onclick to HTML for maximum compatibility