Marino Faggiana %!s(int64=7) %!d(string=hai) anos
pai
achega
1c762f09cb
Modificáronse 2 ficheiros con 11 adicións e 8 borrados
  1. 2 2
      iOSClient/Database/NCManageDatabase.swift
  2. 9 6
      iOSClient/Main/CCMain.m

+ 2 - 2
iOSClient/Database/NCManageDatabase.swift

@@ -1111,7 +1111,7 @@ class NCManageDatabase: NSObject {
         
         let realm = try! Realm()
         
-        let result = realm.objects(tableDirectory.self).filter("account = %@ AND AND directoryID = %@", tableAccount!.account, directoryID).first
+        let result = realm.objects(tableDirectory.self).filter("account = %@ AND directoryID = %@", tableAccount!.account, directoryID).first
         
         if result != nil {
             return (result?.serverUrl)!
@@ -1882,7 +1882,7 @@ class NCManageDatabase: NSObject {
         
         return unmanageMetadatas
     }
-     */
+    */
     
     //MARK: -
     //MARK: Table Share

+ 9 - 6
iOSClient/Main/CCMain.m

@@ -246,15 +246,18 @@
         
     } else {
         
-        tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@", app.activeAccount, _serverUrl]];
+        if (app.activeAccount.length > 0) {
         
-        if (app.activeAccount.length > 0 && app.activeMain != self ) {
+            tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@", app.activeAccount, _serverUrl]];
+        
+            if (app.activeMain != self || [directory.etag length] == 0) {
             
-            // Load Datasource
-            [self reloadDatasource:_serverUrl];
+                // Load Datasource
+                [self reloadDatasource:_serverUrl];
             
-            // Read (file) Folder
-            [self readFileReloadFolder];
+                // Read (file) Folder
+                [self readFileReloadFolder];
+            }
         }
     }