Skip to content

Commit

Permalink
- update SDK
Browse files Browse the repository at this point in the history
- fix finding (1) from #930: wrong error message trying to create a folder in an account with invalid token
  • Loading branch information
felix-schwarz committed Apr 8, 2021
1 parent c087c6a commit acf2f3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ios-sdk
Submodule ios-sdk updated 47 files
+26 βˆ’2 ownCloudSDK.xcodeproj/project.pbxproj
+34 βˆ’0 ownCloudSDK/Bookmark/OCBookmark+DBMigration.h
+63 βˆ’0 ownCloudSDK/Bookmark/OCBookmark+DBMigration.m
+19 βˆ’0 ownCloudSDK/Bookmark/OCBookmark+Diagnostics.m
+3 βˆ’0 ownCloudSDK/Bookmark/OCBookmark.h
+9 βˆ’1 ownCloudSDK/Bookmark/OCBookmark.m
+1 βˆ’0 ownCloudSDK/Connection/OCConnection.h
+58 βˆ’2 ownCloudSDK/Connection/OCConnection.m
+1 βˆ’1 ownCloudSDK/Core/Connection Status/OCCore+ConnectionStatus.m
+1 βˆ’1 ownCloudSDK/Core/Favorites/OCCore+Favorites.m
+1 βˆ’1 ownCloudSDK/Core/ItemPolicies/Processors/OCItemPolicyProcessor.m
+6 βˆ’0 ownCloudSDK/Core/OCCore.h
+61 βˆ’17 ownCloudSDK/Core/OCCore.m
+81 βˆ’0 ownCloudSDK/Core/Sync/OCCore+SyncEngine.m
+4 βˆ’1 ownCloudSDK/Errors/NSError+OCError.h
+8 βˆ’0 ownCloudSDK/Errors/NSError+OCError.m
+2 βˆ’1 ownCloudSDK/Item/OCItem.h
+3 βˆ’2 ownCloudSDK/Item/OCItem.m
+61 βˆ’36 ownCloudSDK/Query/Condition/OCQueryCondition+Item.m
+5 βˆ’0 ownCloudSDK/Query/Condition/OCQueryCondition+SQLBuilder.m
+3 βˆ’0 ownCloudSDK/Query/Condition/OCQueryCondition.h
+11 βˆ’0 ownCloudSDK/Query/Condition/OCQueryCondition.m
+2 βˆ’0 ownCloudSDK/Query/OCQuery.h
+3 βˆ’1 ownCloudSDK/Query/OCQuery.m
+5 βˆ’2 ownCloudSDK/Resource Management/OCCoreManager+ItemResolution.m
+26 βˆ’1 ownCloudSDK/Resource Management/OCCoreManager.m
+9 βˆ’0 ownCloudSDK/Resources/en.lproj/Localizable.strings
+34 βˆ’0 ownCloudSDK/Toolkit/OCCancelAction.h
+57 βˆ’0 ownCloudSDK/Toolkit/OCCancelAction.m
+143 βˆ’1 ownCloudSDK/Vaults/Database/OCDatabase+Schemas.m
+17 βˆ’0 ownCloudSDK/Vaults/Database/OCDatabase+Versions.h
+6 βˆ’1 ownCloudSDK/Vaults/Database/OCDatabase.h
+77 βˆ’13 ownCloudSDK/Vaults/Database/OCDatabase.m
+15 βˆ’13 ownCloudSDK/Vaults/Database/SQLite/Internals/OCSQLiteDB+Internal.m
+1 βˆ’1 ownCloudSDK/Vaults/Database/SQLite/Internals/OCSQLiteResultSet.m
+8 βˆ’0 ownCloudSDK/Vaults/Database/SQLite/Internals/OCSQLiteStatement.h
+17 βˆ’0 ownCloudSDK/Vaults/Database/SQLite/Internals/OCSQLiteStatement.m
+8 βˆ’1 ownCloudSDK/Vaults/Database/SQLite/OCSQLiteDB.h
+79 βˆ’1 ownCloudSDK/Vaults/Database/SQLite/OCSQLiteDB.m
+31 βˆ’0 ownCloudSDK/Vaults/Database/SQLite/Queries/OCSQLiteQuery+Private.h
+5 βˆ’0 ownCloudSDK/Vaults/Database/SQLite/Queries/OCSQLiteQuery.h
+31 βˆ’0 ownCloudSDK/Vaults/Database/SQLite/Queries/OCSQLiteQuery.m
+3 βˆ’1 ownCloudSDK/Vaults/Database/SQLite/Schema/OCSQLiteMigration.h
+24 βˆ’1 ownCloudSDK/Vaults/Database/SQLite/Schema/OCSQLiteMigration.m
+1 βˆ’0 ownCloudSDK/Vaults/Database/SQLite/Schema/OCSQLiteTableSchema.h
+10 βˆ’0 ownCloudSDK/Vaults/OCVault.m
+4 βˆ’0 ownCloudSDK/ownCloudSDK.h
2 changes: 1 addition & 1 deletion ownCloud Intents/CreateFolderIntentHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public class CreateFolderIntentHandler: NSObject, CreateFolderIntentHandling, OC
}
}
} else if core != nil {
self.complete(with: CreateFolderIntentResponse(code: .pathFailure, userActivity: nil))
self.complete(with: CreateFolderIntentResponse(code: (error?.isAuthenticationError == true) ? .authenticationFailed : .pathFailure, userActivity: nil))
} else {
self.complete(with: CreateFolderIntentResponse(code: .failure, userActivity: nil))
}
Expand Down

0 comments on commit acf2f3d

Please sign in to comment.