fix: actually pass force through from loadVisible to loadRange

loadVisible(force = true) (used by the error-banner retry button) was
still funneling into loadRange with an implicit force = false, so the
isCached short-circuit was never actually bypassed on retry.
This commit is contained in:
Guido Schmit
2026-07-02 18:34:08 +02:00
parent 9dd41420b6
commit a3568fb6f3

View File

@@ -214,7 +214,7 @@ class CalendarViewModel @Inject constructor(
return
}
viewModelScope.launch {
loadRange(start, end, background = false)
loadRange(start, end, background = false, force = force)
markReady()
}
}