From a3cbe21104be3f9fa3062048ebbee4a013b7c00a Mon Sep 17 00:00:00 2001 From: Alex Krolick Date: Mon, 27 Jan 2025 12:38:43 -0900 Subject: [PATCH] increase global masto api timeout --- src/utils/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/api.js b/src/utils/api.js index 7c311e4c..e9c08afc 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -42,7 +42,7 @@ export function initClient({ instance, accessToken }) { const masto = createRestAPIClient({ url, accessToken, // Can be null - timeout: 30_000, // Unfortunatly this is global instead of per-request + timeout: 60_000, // Unfortunatly this is global instead of per-request }); const client = {