Sfoglia il codice sorgente

avoid unneeded chatlist update on initial startup

cyberta 3 anni fa
parent
commit
5bec74aa9c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      deltachat-ios/Controller/ChatListController.swift

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

@@ -252,8 +252,8 @@ class ChatListController: UITableViewController {
         if navigationController?.visibleViewController == self {
             if !isInitial {
                 startTimer()
+                handleChatListUpdate()
             }
-            handleChatListUpdate()
             isInitial = false
         }
     }