mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-20 06:02:33 +02:00
Modify the "Time" in the AliyunSMS to local time. (#5582)
This commit is contained in:
parent
20820f5a5a
commit
784ac9ca35
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class AliyunSMS extends NotificationProvider {
|
||||||
if (heartbeatJSON != null) {
|
if (heartbeatJSON != null) {
|
||||||
let msgBody = JSON.stringify({
|
let msgBody = JSON.stringify({
|
||||||
name: monitorJSON["name"],
|
name: monitorJSON["name"],
|
||||||
time: heartbeatJSON["time"],
|
time: heartbeatJSON["localDateTime"],
|
||||||
status: this.statusToString(heartbeatJSON["status"]),
|
status: this.statusToString(heartbeatJSON["status"]),
|
||||||
msg: heartbeatJSON["msg"],
|
msg: heartbeatJSON["msg"],
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue