fix(notifd): urgency getter

This commit is contained in:
Aylur
2024-09-02 19:40:01 +02:00
parent d9a514a6e5
commit b8acc3897f

View File

@@ -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,