From d378674c8c09bb2170f4789a2ce093e80489e57a Mon Sep 17 00:00:00 2001 From: Vyacheslav Matyukhin Date: Wed, 27 Apr 2022 23:20:05 +0400 Subject: [PATCH] fix: /status colors --- src/web/status/pages/StatusPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/status/pages/StatusPage.tsx b/src/web/status/pages/StatusPage.tsx index 71c76a7..f7ba079 100644 --- a/src/web/status/pages/StatusPage.tsx +++ b/src/web/status/pages/StatusPage.tsx @@ -22,7 +22,7 @@ const StatusPage: NextPage = () => { ? new Date(platform.lastUpdated * 1000) : null; const isStale = - !ts || new Date().getTime() - ts.getTime() < 2 * 86400 * 1000; + !ts || new Date().getTime() - ts.getTime() > 2 * 86400 * 1000; return (