bugfix for boostactiveendtime
This commit is contained in:
parent
6028302a64
commit
6e63404724
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ const topicHeating = (name: string) => ({
|
||||||
if (!json || !json["boostactiveendtime"]) {
|
if (!json || !json["boostactiveendtime"]) {
|
||||||
return "inactive";
|
return "inactive";
|
||||||
} else {
|
} else {
|
||||||
return new Date(json["windowopenactiveendtime"] * 1000).toLocaleTimeString();
|
return new Date(json["boostactiveendtime"] * 1000).toLocaleTimeString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue