Skip to content

Commit

Permalink
Xcode 16 RC fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danpashin committed Sep 10, 2024
1 parent 984c5fc commit 8f40713
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ final class LogViewController: UIViewController, FFILoggerSubscriber, Scrollable
}

deinit {
Task {
Task { [self] in
await FFILogger.shared.removeSubscriber(self)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ final class DebsListVC: SelectablePackageListVC<DebPackage> {
}

deinit {
Task { @MainActor in
Task { @MainActor [self] in
NotificationCenter.default.removeObserver(reloadObserver as Any)
}
}
Expand Down
2 changes: 1 addition & 1 deletion twackup-gui/Twackup/Sources/Views/DiskSpaceUsageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class DiskSpaceUsageView: UIView {
}

deinit {
Task { @MainActor in
Task { @MainActor [self] in
NotificationCenter.default.removeObserver(reloadObserver as Any)
}
}
Expand Down

0 comments on commit 8f40713

Please sign in to comment.