rosary: show broken streak reset on page visit, not only after clicking "prayed"
All checks were successful
CI / update (push) Successful in 1m37s

This commit is contained in:
2026-02-05 20:45:35 +01:00
parent 83de5fed34
commit cda8fe0885

View File

@@ -142,6 +142,9 @@ class RosaryStreakStore {
}
get length() {
if (this.#lastPrayed && this.#lastPrayed !== getToday() && !isYesterday(this.#lastPrayed)) {
return 0;
}
return this.#length;
}