From 9d30af4edddd5d5c57c0b510a5cf6ff18771bf0d Mon Sep 17 00:00:00 2001 From: sim Date: Mon, 18 Aug 2025 14:12:46 +0200 Subject: [PATCH] Fix Urgency case --- src/Simplex/Messaging/Notifications/Server/Push/WebPush.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Simplex/Messaging/Notifications/Server/Push/WebPush.hs b/src/Simplex/Messaging/Notifications/Server/Push/WebPush.hs index 51e571df3..3ece66d2c 100644 --- a/src/Simplex/Messaging/Notifications/Server/Push/WebPush.hs +++ b/src/Simplex/Messaging/Notifications/Server/Push/WebPush.hs @@ -52,7 +52,7 @@ wpPushProviderClient mg tkn pn = do encBody <- body e let requestHeaders = [ ("TTL", "2592000") -- 30 days - , ("Urgency", "High") + , ("Urgency", "high") , ("Content-Encoding", "aes128gcm") -- TODO: topic for pings and interval ]