Skip to content
Open
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
6 changes: 6 additions & 0 deletions LoopFollow/Alarm/AlarmManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ class AlarmManager {
}

func checkAlarms(data: AlarmData) {
// Don't evaluate against stale pre-unlock state before the BFU reload runs.
if Storage.shared.needsBFUReload {
LogManager.shared.log(category: .alarm, message: "Skipping alarm check — BFU reload pending", isDebug: true)
return
}

let now = Date()
var alarmTriggered = false

Expand Down
Loading