Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
marinofaggiana committed Mar 9, 2022
2 parents 404d101 + 1dd85fe commit 7a00076
Show file tree
Hide file tree
Showing 276 changed files with 2,265 additions and 2,718 deletions.
6 changes: 2 additions & 4 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ empty_count:

line_length:
# warning: 120
warning: 200
warning: 250
error: 250

type_body_length:
# error: 350
Expand Down Expand Up @@ -117,9 +118,6 @@ excluded:
- iOSClient/Shares/NCShares.swift
- iOSClient/Transfers/NCTransferCell.swift
- iOSClient/Transfers/NCTransfers.swift
- iOSClient/Trash/Cell/NCTrashListCell.swift
- iOSClient/Trash/NCTrash.swift
- iOSClient/Trash/Section/NCTrashSectionHeaderFooter.swift
- iOSClient/UserStatus/NCUserStatus.swift
- iOSClient/Utility/NCAskAuthorization.swift
- iOSClient/Utility/NCContentPresenter.swift
Expand Down
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "krzyzanowskim/OpenSSL" "1.1.1300"
github "marinofaggiana/KTVHTTPCache" "2.0.2"
github "marinofaggiana/TOPasscodeViewController" "7a750031bb86d9dc9f193bf34a38bbd288b3c4fd"
github "marinofaggiana/TOPasscodeViewController" "a1b9d1058b2648e636525fc368e220a0cfddb42a"
2 changes: 1 addition & 1 deletion File Provider Extension/FileProviderExtension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class FileProviderExtension: NSFileProviderExtension, NCNetworkingDelegate {
}

let tableLocalFile = NCManageDatabase.shared.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) && tableLocalFile?.etag == metadata.etag {
if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata) && tableLocalFile?.etag == metadata.etag {
completionHandler(nil)
return
}
Expand Down
2 changes: 1 addition & 1 deletion File Provider Extension/FileProviderItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class FileProviderItem: NSObject, NSFileProviderItem {
if metadata.directory {
return true
}
if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
if CCUtility.fileProviderStorageExists(metadata) {
return true
} else {
return false
Expand Down
543 changes: 175 additions & 368 deletions Nextcloud.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1250"
LastUpgradeVersion = "1320"
wasCreatedForAppExtension = "YES"
version = "2.0">
<BuildAction
Expand Down Expand Up @@ -93,7 +93,6 @@
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES"
askForAppToLaunch = "Yes"
launchAutomaticallySubstyle = "2">
<BuildableProductRunnable
runnableDebuggingMode = "0">
Expand Down
Loading

0 comments on commit 7a00076

Please sign in to comment.