From 19ac98bf233adb534904b8e3eb67d25224877fbb Mon Sep 17 00:00:00 2001 From: CommanderRedYT Date: Mon, 13 Oct 2025 20:20:42 +0200 Subject: [PATCH] Increase timeout for github api fetches --- src/github/FetchHandler.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/github/FetchHandler.tsx b/src/github/FetchHandler.tsx index 8e8941e9..a74678da 100644 --- a/src/github/FetchHandler.tsx +++ b/src/github/FetchHandler.tsx @@ -262,8 +262,8 @@ const FetchHandler: FC = ({ children }) => { () => { fetchHandler(); }, - 1000 * 60 * 10, - ); // 10 minutes + 1000 * 60 * 60, + ); // every hour return () => { log.info('Clearing interval...');