Skip to content

Commit fafa4a7

Browse files
NextcloudKit 7.0.1
Signed-off-by: Marino Faggiana <[email protected]>
1 parent be62c0a commit fafa4a7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

File Provider Extension/FileProviderExtension+Actions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ extension FileProviderExtension {
143143
return
144144

145145
} else {
146-
146+
147147
completionHandler(nil, NSFileProviderError(.noSuchItem, userInfo: [NSLocalizedDescriptionKey: resultsMove.error.errorDescription, NSLocalizedFailureReasonErrorKey: ""]))
148148
return
149149
}

Nextcloud.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6244,8 +6244,8 @@
62446244
isa = XCRemoteSwiftPackageReference;
62456245
repositoryURL = "https://github.com/nextcloud/NextcloudKit";
62466246
requirement = {
6247-
branch = main;
6248-
kind = branch;
6247+
kind = exactVersion;
6248+
version = 7.0.1;
62496249
};
62506250
};
62516251
F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */ = {

iOSClient/Data/NCManageDatabase.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ final class NCManageDatabase: @unchecked Sendable {
2525
return queue
2626
}()
2727

28-
2928
init() {
3029
let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroup)
3130
let bundleUrl: URL = Bundle.main.bundleURL

iOSClient/Networking/NCNetworking+WebDAV.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ extension NCNetworking {
7777

7878
let showHiddenFiles = NCKeychain().getShowHiddenFiles(account: account)
7979

80-
let resultsReadFolder = await NextcloudKit.shared.readFileOrFolderAsync(serverUrlFileName: serverUrl, depth: "1", showHiddenFiles: showHiddenFiles,account: account, options: options)
80+
let resultsReadFolder = await NextcloudKit.shared.readFileOrFolderAsync(serverUrlFileName: serverUrl, depth: "1", showHiddenFiles: showHiddenFiles, account: account, options: options)
8181

8282
guard resultsReadFolder.error == .success, let files = resultsReadFolder.files else {
8383
return(account, nil, nil, resultsReadFolder.error)

0 commit comments

Comments
 (0)