Loading
fix(updater): remove duplicate restart confirmation dialog
Previously showed two restart dialogs: 1. Custom ConfirmBox asking "Restart KOReader now?" 2. UIManager:askForRestart() showing its own confirmation Solution: - Pass custom message directly to UIManager:askForRestart() - Remove wrapper ConfirmBox entirely - User now sees only one restart confirmation with custom message Changes: - installUpdate(): Pass success message to askForRestart() - rollbackUpdate(): Pass rollback message to askForRestart() This provides better UX with a single confirmation dialog that includes the custom message about the successful update/rollback.