From 28e317e31d9655fa59b3b2fdcdec1015d13cccec Mon Sep 17 00:00:00 2001 From: lumpy Date: Wed, 28 Jan 2026 17:11:24 +0100 Subject: [PATCH] fix incorrect link to clock --- src/adminui/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adminui/frontend.py b/src/adminui/frontend.py index 517f8d1..bf396ca 100644 --- a/src/adminui/frontend.py +++ b/src/adminui/frontend.py @@ -28,7 +28,7 @@ def home(request: Request, session: Session = Depends(login_required)) -> Respon if context.has_clock: links.append( Link( - url=f"http://clock.{context.fqdn}/", + url=f"http://hwclock.{context.fqdn}/", title="Clock", text="Update date and time as seen by the Hotspot.", )