From 7ba717ee5592459316af75cdf6c46bf69bf9e907 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Tue, 21 Jun 2022 15:12:24 +0800 Subject: [PATCH] Fix Lunasea do not handle general message correctly #1790 --- server/notification-providers/lunasea.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/notification-providers/lunasea.js b/server/notification-providers/lunasea.js index b53f32419..2985425ef 100644 --- a/server/notification-providers/lunasea.js +++ b/server/notification-providers/lunasea.js @@ -14,7 +14,7 @@ class LunaSea extends NotificationProvider { if (heartbeatJSON == null) { let testdata = { "title": "Uptime Kuma Alert", - "body": "Testing Successful.", + "body": msg, }; await axios.post(lunaseadevice, testdata); return okMsg;