I have tried implemention notificaitons in my shell and the actions dont seem to be doing anything
I used
window.on_noti_action(move |id, action_key| {
info!("Invoking action for ID: {}, action: {}", id,action_key);
thread::spawn(move || {
let _ = NOTIFICATION_EVENT.get().unwrap().action_invoked(id, &action_key);
});
});
Im passing the right things to it
[2026-06-20T20:20:21Z INFO koia_shell::services::notifications::manager] Invoking action for ID: 1553, action default
but it isnt doing anything
Im trying it on discord notifications where it should move to the place the notifications comes from on action call it does on other notification managers but not on spell
I have tried implemention notificaitons in my shell and the actions dont seem to be doing anything
I used
Im passing the right things to it
but it isnt doing anything
Im trying it on discord notifications where it should move to the place the notifications comes from on action call it does on other notification managers but not on spell