From bdcb0a8ce3ecb5708b7735ce3f3907d58099d0a9 Mon Sep 17 00:00:00 2001 From: 2mal3 <56305732+2mal3@users.noreply.github.com> Date: Sat, 10 Jan 2026 00:22:53 +0100 Subject: [PATCH] fix(control): could not start display over wol --- control/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/main.go b/control/main.go index 0bc253c..0ca747b 100644 --- a/control/main.go +++ b/control/main.go @@ -112,7 +112,7 @@ func wakeOnLanRoute(ctx echo.Context) error { if err != nil { return ctx.JSON(http.StatusInternalServerError, shared.ErrorResponse{Description: "Failed to create Wake-on-LAN client"}) } - if err := client.Wake("255.255.255.255", mac); err != nil { + if err := client.Wake("255.255.255.255:7", mac); err != nil { return ctx.JSON(http.StatusInternalServerError, shared.ErrorResponse{Description: "Failed to send Wake-on-LAN packet"}) }