From 3f7e92ae44f980eef21f6b6d129893379c9dca11 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sun, 13 Jul 2025 19:12:45 -0500 Subject: [PATCH] Requery channels on successful m3u refresh. --- frontend/src/components/M3URefreshNotification.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/M3URefreshNotification.jsx b/frontend/src/components/M3URefreshNotification.jsx index fb295252..c946d001 100644 --- a/frontend/src/components/M3URefreshNotification.jsx +++ b/frontend/src/components/M3URefreshNotification.jsx @@ -136,6 +136,7 @@ export default function M3URefreshNotification() { // Only trigger additional fetches on successful completion if (data.action == 'parsing') { fetchStreams(); + API.requeryChannels(); fetchChannels(); } else if (data.action == 'processing_groups') { fetchStreams();