浏览代码

improve readability

cyberta 4 年之前
父节点
当前提交
3c62ea5aa6
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      deltachat-ios/Controller/ChatListController.swift

+ 5 - 1
deltachat-ios/Controller/ChatListController.swift

@@ -372,7 +372,11 @@ class ChatListController: UITableViewController {
         // check if the timer is not yet started
         stopTimer()
         timer = Timer.scheduledTimer(withTimeInterval: 60, repeats: true) { [weak self] _ in
-            guard let self = self, let appDelegate = UIApplication.shared.delegate as? AppDelegate else { return }
+            
+            guard let self = self,
+                  let appDelegate = UIApplication.shared.delegate as? AppDelegate
+            else { return }
+            
             if appDelegate.appIsInForeground() {
                 self.refreshInBg()
             } else {