marinofaggiana 4 жил өмнө
parent
commit
c70937da18

+ 1 - 3
iOSClient/Favorites/NCFavorite.swift

@@ -160,11 +160,9 @@ class NCFavorite: UIViewController, UIGestureRecognizerDelegate, NCListCellDeleg
         if self.view?.window == nil { return }
         
         if let userInfo = notification.userInfo as NSDictionary? {
-            if let metadata = userInfo["metadata"] as? tableMetadata, let errorCode = userInfo["errorCode"] as? Int {
-                if errorCode == 0 {
+            if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
                     self.dataSource?.reloadMetadata(ocId: metadata.ocId)
                     collectionView.reloadData()
-                }
             }
         }
     }