From 1afd61e6879c9344463c6593550058ae922316e5 Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Mon, 27 Oct 2025 11:36:53 +0100 Subject: [PATCH] fix: force page reload when redirecting from reboot actions --- ui/src/components/VideoOverlay.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/components/VideoOverlay.tsx b/ui/src/components/VideoOverlay.tsx index 1b565d81..2f8c26e5 100644 --- a/ui/src/components/VideoOverlay.tsx +++ b/ui/src/components/VideoOverlay.tsx @@ -483,6 +483,7 @@ export function RebootingOverlay({ show, postRebootAction }: RebootingOverlayPro const targetUrl = new URL(postRebootAction.redirectTo, window.location.origin); window.location.href = targetUrl.href; + window.location.reload(); } } catch (err) { // Ignore errors - they're expected while device is rebooting