From a69bdfdb7c31ac98977f6475f6f024acf75e1110 Mon Sep 17 00:00:00 2001 From: Mephisto <38382271+NotMephisto@users.noreply.github.com> Date: Mon, 16 Jun 2025 19:36:34 +0300 Subject: [PATCH] Using Decoder for Uint8Array type data --- ags/widget/control-center/pages/Network.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ags/widget/control-center/pages/Network.ts b/ags/widget/control-center/pages/Network.ts index 3626cdd..4c5369d 100644 --- a/ags/widget/control-center/pages/Network.ts +++ b/ags/widget/control-center/pages/Network.ts @@ -92,7 +92,7 @@ export const PageNetwork: (() => Page) = () => new Page({ new Widget.Label({ className: "ssid", halign: Gtk.Align.START, - label: ap.ssid.get_data()?.toString() ?? "Wi-Fi" + label: getDecoded(ap.ssid.get_data()) ?? "Wi-Fi" } as Widget.LabelProps), new Widget.Label({ className: "status",