fix: stringify Exception when passing to dialog

This commit is contained in:
aclist 2026-06-06 02:29:09 +09:00
parent aeefc830cd
commit 0de0dd4a03

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)