bugfix for boostactiveendtime

This commit is contained in:
Ranlvor 2020-12-19 16:37:16 +01:00
parent 6028302a64
commit 6e63404724
Signed by untrusted user who does not match committer: Ranlvor
GPG key ID: 5E12D04750EF6F8E

View file

@ -133,7 +133,7 @@ const topicHeating = (name: string) => ({
if (!json || !json["boostactiveendtime"]) {
return "inactive";
} else {
return new Date(json["windowopenactiveendtime"] * 1000).toLocaleTimeString();
return new Date(json["boostactiveendtime"] * 1000).toLocaleTimeString();
}
}
},