summaryrefslogtreecommitdiff
path: root/lib/notifd
diff options
context:
space:
mode:
Diffstat (limited to 'lib/notifd')
-rw-r--r--lib/notifd/notification.vala2
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,