From 4eba8e7530516a798396696418e013251740481d Mon Sep 17 00:00:00 2001 From: "plebeius.eth" Date: Wed, 4 Oct 2023 21:17:00 +0200 Subject: [PATCH] fix(offline indicator): check for online status every 30 minutes instead of 20 --- src/components/OfflineIndicator.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/OfflineIndicator.jsx b/src/components/OfflineIndicator.jsx index e33f8c2b..46c737b4 100644 --- a/src/components/OfflineIndicator.jsx +++ b/src/components/OfflineIndicator.jsx @@ -3,7 +3,7 @@ import { useSubplebbit } from '@plebbit/plebbit-react-hooks'; const OfflineIndicator = ({ address, className, tooltipPlace }) => { const subplebbit = useSubplebbit({ subplebbitAddress: address }); - const isOnline = subplebbit.updatedAt > Date.now() / 1000 - 60 * 20; + const isOnline = subplebbit.updatedAt > Date.now() / 1000 - 60 * 30; return ( <>