diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2022-09-22 12:09:17 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2022-09-26 13:44:09 +0200 |
| commit | d52fbbdc6f8a3626d2a222543ac51fd07634179a (patch) | |
| tree | 0e654d17a7711ab98fe1c308927ad209637a4b8d /ios/MullvadVPN/DeviceManagementViewController.swift | |
| parent | 2c003f12e01e92b338e6361d38a4f75a47e3e041 (diff) | |
| download | mullvadvpn-d52fbbdc6f8a3626d2a222543ac51fd07634179a.tar.xz mullvadvpn-d52fbbdc6f8a3626d2a222543ac51fd07634179a.zip | |
Replace ChainedError with WrappingError
Diffstat (limited to 'ios/MullvadVPN/DeviceManagementViewController.swift')
| -rw-r--r-- | ios/MullvadVPN/DeviceManagementViewController.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/DeviceManagementViewController.swift b/ios/MullvadVPN/DeviceManagementViewController.swift index 128e1c6ab4..383b7ca822 100644 --- a/ios/MullvadVPN/DeviceManagementViewController.swift +++ b/ios/MullvadVPN/DeviceManagementViewController.swift @@ -248,7 +248,7 @@ class DeviceManagementViewController: UIViewController, RootContainment { case let .failure(error): self.logger.error( - chainedError: AnyChainedError(error), + error: error, message: "Failed to delete device." ) completionHandler(error) |
