Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/ios.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarino Faggiana <m.faggiana@twsweb.it>2018-11-26 16:17:31 +0300
committerMarino Faggiana <marinofaggiana@MacBook-Pro-di-Marino.local>2018-11-26 16:17:31 +0300
commit333c2aee8599ce366d17987547c0ab153e883585 (patch)
tree0c369c31c12fce63d0629300b61f9061bc1504e9
parent88a9a88894d942c9d448010280b686427259d500 (diff)
fix thread (20)2.22.6
-rw-r--r--iOSClient/Brand/File_Provider_Extension.plist2
-rw-r--r--iOSClient/Brand/Notification_Service_Extension.plist2
-rw-r--r--iOSClient/Brand/Share.plist2
-rw-r--r--iOSClient/Brand/iOSClient.plist2
-rw-r--r--iOSClient/Main/CCMain.m4
5 files changed, 6 insertions, 6 deletions
diff --git a/iOSClient/Brand/File_Provider_Extension.plist b/iOSClient/Brand/File_Provider_Extension.plist
index 15b12b1bb..188d196c7 100644
--- a/iOSClient/Brand/File_Provider_Extension.plist
+++ b/iOSClient/Brand/File_Provider_Extension.plist
@@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>2.22.6</string>
<key>CFBundleVersion</key>
- <string>19</string>
+ <string>20</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionFileProviderDocumentGroup</key>
diff --git a/iOSClient/Brand/Notification_Service_Extension.plist b/iOSClient/Brand/Notification_Service_Extension.plist
index a4ac19e0a..370b28356 100644
--- a/iOSClient/Brand/Notification_Service_Extension.plist
+++ b/iOSClient/Brand/Notification_Service_Extension.plist
@@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>2.22.6</string>
<key>CFBundleVersion</key>
- <string>19</string>
+ <string>20</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
diff --git a/iOSClient/Brand/Share.plist b/iOSClient/Brand/Share.plist
index 3b359ab32..f04e65c9c 100644
--- a/iOSClient/Brand/Share.plist
+++ b/iOSClient/Brand/Share.plist
@@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>2.22.6</string>
<key>CFBundleVersion</key>
- <string>19</string>
+ <string>20</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
diff --git a/iOSClient/Brand/iOSClient.plist b/iOSClient/Brand/iOSClient.plist
index 0c33d7cb6..3655dd254 100644
--- a/iOSClient/Brand/iOSClient.plist
+++ b/iOSClient/Brand/iOSClient.plist
@@ -50,7 +50,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>19</string>
+ <string>20</string>
<key>FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED</key>
<true/>
<key>Fabric</key>
diff --git a/iOSClient/Main/CCMain.m b/iOSClient/Main/CCMain.m
index afccd650c..9275fb4bc 100644
--- a/iOSClient/Main/CCMain.m
+++ b/iOSClient/Main/CCMain.m
@@ -1296,12 +1296,12 @@
// E2EE Is encrypted folder get metadata
if (_metadataFolder.e2eEncrypted) {
-
+ NSString *metadataFolderFileID = metadataFolder.fileID;
// Read Metadata
if ([CCUtility isEndToEndEnabled:appDelegate.activeAccount]) {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
NSString *metadata;
- NSError *error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:&metadata fileID:metadataFolder.fileID user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];
+ NSError *error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:&metadata fileID:metadataFolderFileID user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];
dispatch_async(dispatch_get_main_queue(), ^{
if (error) {
if (error.code != 404)