From 2d5096317fa3a90cfcb6618b6cc19bf305188d41 Mon Sep 17 00:00:00 2001 From: jakubenglicky Date: Thu, 15 Sep 2022 09:11:27 +0200 Subject: [PATCH] Fix warning at goalert.js --- server/notification-providers/goalert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/notification-providers/goalert.js b/server/notification-providers/goalert.js index c757e599..73e0375a 100644 --- a/server/notification-providers/goalert.js +++ b/server/notification-providers/goalert.js @@ -22,7 +22,7 @@ class GoAlert extends NotificationProvider { let config = { headers: headers }; - let resp = await axios.post(`${notification.goAlertBaseURL}/api/v2/generic/incoming?token=${notification.goAlertToken}`, data, config); + await axios.post(`${notification.goAlertBaseURL}/api/v2/generic/incoming?token=${notification.goAlertToken}`, data, config); return okMsg; } catch (error) {