diff options
author | Aylur <[email protected]> | 2024-09-02 19:40:01 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-02 19:40:01 +0200 |
commit | b8acc3897f5c48a5fc4ba73921c77cae2e91598c (patch) | |
tree | 3721802de1866fa474e9117de6ad5ef2aea425db /lib/notifd | |
parent | d9a514a6e59c839d2779c06f0fafb640802068f7 (diff) |
fix(notifd): urgency getter
Diffstat (limited to 'lib/notifd')
-rw-r--r-- | lib/notifd/notification.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/notifd/notification.vala b/lib/notifd/notification.vala index 0b4af06..66eaccd 100644 --- a/lib/notifd/notification.vala +++ b/lib/notifd/notification.vala @@ -33,7 +33,7 @@ public class AstalNotifd.Notification : Object { public bool transient { get { return get_bool_hint("transient"); } } public int x { get { return get_int_hint("x"); } } public int y { get { return get_int_hint("y"); } } - public Urgency urgency { get { return get_int_hint("urgency"); } } + public Urgency urgency { get { return get_hint("urgency").get_byte(); } } internal Notification( string app_name, |