aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-12-14 00:01:50 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-12-14 00:01:50 +0100
commit73be704b01bf0d17688b1324623a006c16288c04 (patch)
tree04772b2d8f30b8623ab92992cbaf843d5b4c791d /WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift
parentSimplify filemanager extension (diff)
downloadwireguard-apple-73be704b01bf0d17688b1324623a006c16288c04.tar.xz
wireguard-apple-73be704b01bf0d17688b1324623a006c16288c04.zip
Deduplicate functions
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift10
1 files changed, 1 insertions, 9 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift b/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift
index 6d57006..0145fda 100644
--- a/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift
+++ b/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift
@@ -6,16 +6,8 @@ import os.log
class ErrorPresenter {
static func showErrorAlert(error: WireGuardAppError, from sourceVC: UIViewController?, onPresented: (() -> Void)? = nil, onDismissal: (() -> Void)? = nil) {
- guard let sourceVC = sourceVC else { return }
-
let (title, message) = error.alertText
- let okAction = UIAlertAction(title: "OK", style: .default) { _ in
- onDismissal?()
- }
- let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
- alert.addAction(okAction)
-
- sourceVC.present(alert, animated: true, completion: onPresented)
+ showErrorAlert(title: title, message: message, from: sourceVC, onPresented: onPresented, onDismissal: onDismissal)
}
static func showErrorAlert(title: String, message: String, from sourceVC: UIViewController?, onPresented: (() -> Void)? = nil, onDismissal: (() -> Void)? = nil) {