Merge pull request #344 from aclist/fix/stringify-exceptions
Some checks are pending
Mirror to Codeberg / mirror-to-codeberg (push) Waiting to run

fix: stringify Exception when passing to dialog
This commit is contained in:
aclist 2026-06-06 02:31:09 +09:00 committed by GitHub
commit 9d3aa8d9f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,7 +53,7 @@ class UpdateManager:
func = StoredFunc(self._on_update_failure, msg)
self.thread_man.set_cleanup_func(func, destroy_first=True)
except Exception as e:
func = StoredFunc(self._on_update_failure, e)
func = StoredFunc(self._on_update_failure, str(e))
self.thread_man.set_cleanup_func(func, destroy_first=True)
logger.warning(e)