Bug fix: Fixed TV Guide loading overlay not disappearing after navigating from DVR page. The fetchRecordings() function in the channels store was setting isLoading: true on start but never resetting it to false on successful completion, causing the Guide page's loading overlay to remain visible indefinitely when accessed after the DVR page.
Some checks are pending
CI Pipeline / prepare (push) Waiting to run
CI Pipeline / docker (amd64, ubuntu-24.04) (push) Blocked by required conditions
CI Pipeline / docker (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
CI Pipeline / create-manifest (push) Blocked by required conditions
Build and Push Multi-Arch Docker Image / build-and-push (push) Waiting to run

This commit is contained in:
SergeantPanda 2026-01-11 20:51:26 -06:00
parent 2e9280cf59
commit 564dceb210
2 changed files with 2 additions and 0 deletions

View file

@ -402,6 +402,7 @@ const useChannelsStore = create((set, get) => ({
try {
set({
recordings: await api.getRecordings(),
isLoading: false,
});
} catch (error) {
console.error('Failed to fetch recordings:', error);