Fix deprecated check error

This commit is contained in:
世界
2026-04-23 08:12:53 +08:00
parent d833ab870f
commit 8480bc3bb6
2 changed files with 16 additions and 22 deletions
@@ -165,18 +165,12 @@ public struct GlobalChecksModifier: ViewModifier {
let disableWarnings = await SharedPreferences.disableDeprecatedWarnings.get() let disableWarnings = await SharedPreferences.disableDeprecatedWarnings.get()
guard !disableWarnings else { return } guard !disableWarnings else { return }
do { guard let reports = try? LibboxNewStandaloneCommandClient()!.getDeprecatedNotes() else { return }
let reports = try LibboxNewStandaloneCommandClient()!.getDeprecatedNotes()
if reports.hasNext() { if reports.hasNext() {
await MainActor.run { await MainActor.run {
showNextDeprecatedNote(reports) showNextDeprecatedNote(reports)
} }
} }
} catch {
await MainActor.run {
alert = AlertState(action: "check deprecated notes", error: error)
}
}
} }
private func showNextDeprecatedNote(_ reports: any LibboxDeprecatedNoteIteratorProtocol) { private func showNextDeprecatedNote(_ reports: any LibboxDeprecatedNoteIteratorProtocol) {