From 3ee1d101ffafeca73551cac1c01f187f1b081b14 Mon Sep 17 00:00:00 2001 From: Reactor Scram Date: Thu, 7 Mar 2024 13:58:09 -0600 Subject: [PATCH] docs(windows): notifications don't work on Windows-on-Arm (aarch64) yet (#4037) Ref #4035 --- rust/gui-client/src-tauri/src/client/gui/os_windows.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rust/gui-client/src-tauri/src/client/gui/os_windows.rs b/rust/gui-client/src-tauri/src/client/gui/os_windows.rs index 55798750e..2e66fbddb 100644 --- a/rust/gui-client/src-tauri/src/client/gui/os_windows.rs +++ b/rust/gui-client/src-tauri/src/client/gui/os_windows.rs @@ -5,7 +5,11 @@ use connlib_shared::BUNDLE_ID; /// /// May say "Windows Powershell" and have the wrong icon in dev mode /// See +/// +/// Does not work on aarch64 Windows: pub(crate) fn show_notification(title: &str, body: &str) -> Result<(), Error> { + tracing::debug!(?title, ?body, "show_notification"); + tauri_winrt_notification::Toast::new(BUNDLE_ID) .title(title) .text1(body)