Address code review

Add missing comma

Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
This commit is contained in:
Arjun Komath 2022-01-21 20:42:08 +11:00 committed by GitHub
parent 51b7a2badb
commit 23796723dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ class TechulusPush extends NotificationProvider {
try {
await axios.post(`https://push.techulus.com/api/v1/notify/${notification.pushAPIKey}`, {
"title": "Uptime-Kuma",
"body": msg
"body": msg,
})
return okMsg;
} catch (error) {