Skip to content

Commit

Permalink
Bug fixes and improvements (#2450)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitschlag committed Jan 17, 2025
1 parent 5f6475b commit 08f22b2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions deltachat-ios/Chat/AppPickerViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,6 @@ extension AppPickerViewController: WKNavigationDelegate {
return decisionHandler(.cancel)
}

if #available(iOS 16.0, *) {
try await Task.sleep(for: .seconds(2))
}

let fileURL = NSURL(fileURLWithPath: filepath)
delegate?.pickedAnDownloadedApp(self, fileURL: fileURL as URL)
await MainActor.run {
Expand All @@ -129,7 +125,7 @@ class DownloadingView: UIView {

init() {
activityIndicator = UIActivityIndicatorView(style: .large)
activityIndicator.color = .white
activityIndicator.color = .label
activityIndicator.translatesAutoresizingMaskIntoConstraints = false

blurView = UIVisualEffectView(effect: UIBlurEffect(style: .light))
Expand Down

0 comments on commit 08f22b2

Please sign in to comment.