Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Nextcloud.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6002,7 +6002,7 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/marinofaggiana/LucidBanner";
requirement = {
branch = main;
branch = 0.5.0;
kind = branch;
};
};
Expand Down Expand Up @@ -6122,7 +6122,7 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/nextcloud/NextcloudKit";
requirement = {
branch = main;
branch = 7.2.4;
kind = branch;
};
};
Expand Down
2 changes: 1 addition & 1 deletion Share/NCShareExtension+DataSource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ extension NCShareExtension: UICollectionViewDataSource {
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
var cell = (collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as? NCListCell)!
let cell = (collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as? NCListCell)!
guard let metadata = self.dataSource.getMetadata(indexPath: indexPath) else {
return cell
}
Expand Down
6 changes: 2 additions & 4 deletions Share/NCShareExtension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -406,11 +406,9 @@ extension NCShareExtension {
}

if error == .success {
LucidBanner.shared.update(payload: LucidBannerPayload.Update(stage: .success, horizontalLayout: .centered(width: 100)),
for: self.token)
LucidBanner.shared.update(payload: LucidBannerPayload.Update(stage: .success, horizontalLayout: .centered(width: 100)), for: self.token)
} else {
LucidBanner.shared.update(payload: LucidBannerPayload.Update(subtitle: error?.errorDescription,stage: .error),
for: self.token)
LucidBanner.shared.update(payload: LucidBannerPayload.Update(subtitle: error?.errorDescription, stage: .error), for: self.token)
}

LucidBanner.shared.dismiss(after: 2) {
Expand Down
1 change: 0 additions & 1 deletion iOSClient/Extensions/UIViewController+Extension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,3 @@ extension UIViewController: @retroactive MFMailComposeViewControllerDelegate {
controller.dismiss(animated: true)
}
}

1 change: 0 additions & 1 deletion iOSClient/Menu/NCContextMenuMain.swift
Original file line number Diff line number Diff line change
Expand Up @@ -573,4 +573,3 @@ class NCContextMenuMain: NSObject {
return clientIntegrationMenu
}
}

1 change: 0 additions & 1 deletion iOSClient/Share/NCShare.swift
Original file line number Diff line number Diff line change
Expand Up @@ -565,4 +565,3 @@ extension NCShare {
return emailPred.evaluate(with: email)
}
}

Loading