commit 2ea1bc2d9d551e1c758ded38d5404faf3581c3a2 parent 0fdafbf5a05b1e2132c0e8c8cedb2c55268c6683 Author: Marc Stibane <marc@taler.net> Date: Fri, 14 Aug 2026 10:20:02 +0200 AI: fix conversion to EquatableError Diffstat:
| M | TalerWallet1/Controllers/Controller.swift | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/TalerWallet1/Controllers/Controller.swift b/TalerWallet1/Controllers/Controller.swift @@ -582,7 +582,7 @@ class Controller: ObservableObject { await loadBalances(CallStack(), model) } catch { // rethrows self.logger.error("\(error.localizedDescription)") - backendState = .error(error as! EquatableError) // ❗️Yikes app cannot continue + backendState = .error(error.toEquatableError()) // ❗️Yikes app cannot continue throw error } } else {