diff --git a/DysonNetwork.Sphere/Account/NotificationService.cs b/DysonNetwork.Sphere/Account/NotificationService.cs index 1d672bb..46a9e9e 100644 --- a/DysonNetwork.Sphere/Account/NotificationService.cs +++ b/DysonNetwork.Sphere/Account/NotificationService.cs @@ -215,6 +215,7 @@ public class NotificationService( ["meta"] = notification.Meta ?? new Dictionary(), }, ["mutable_content"] = true, + ["priority"] = notification.Priority >= 10 ? "high" : "normal", }; if (!string.IsNullOrWhiteSpace(notification.Title)) @@ -237,7 +238,7 @@ public class NotificationService( if (notification.Priority >= 5) { - dict["sound"] = new Dictionary { ["name"] = "default" }; + dict["sound"] = new Dictionary { ["name"] = "default", ["volume"] = 1.0 }; } dict["platform"] = platformCode;