diff --git a/deltachat-ios/Controller/Settings/NotificationsViewController.swift b/deltachat-ios/Controller/Settings/NotificationsViewController.swift index aa616c6d7..54272098c 100644 --- a/deltachat-ios/Controller/Settings/NotificationsViewController.swift +++ b/deltachat-ios/Controller/Settings/NotificationsViewController.swift @@ -11,6 +11,7 @@ internal final class NotificationsViewController: UITableViewController { } private enum CellTags: Int { + case defaultTagValue = 0 case systemSettings } @@ -132,6 +133,8 @@ internal final class NotificationsViewController: UITableViewController { if let url = URL(string: urlString), UIApplication.shared.canOpenURL(url) { UIApplication.shared.open(url) } + case .defaultTagValue: + break } }