From d572c738cc0f8df7a174a4a430f85ab202cb2bd8 Mon Sep 17 00:00:00 2001 From: Benjamin Nussbaum Date: Tue, 13 May 2025 19:36:52 +0200 Subject: [PATCH] fix: increase terminal wait time to 30s to avoid image timeout This is enough for most use cases. (VPS) Increase on low powered devices like Raspberry Pi. --- config/services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/services.php b/config/services.php index 9b1a9e7..40973b3 100644 --- a/config/services.php +++ b/config/services.php @@ -40,7 +40,7 @@ return [ 'proxy_refresh_minutes' => env('TRMNL_PROXY_REFRESH_MINUTES', 15), 'proxy_refresh_cron' => env('TRMNL_PROXY_REFRESH_CRON'), 'override_orig_icon' => env('TRMNL_OVERRIDE_ORIG_ICON', false), - 'image_url_timeout' => env('TRMNL_IMAGE_URL_TIMEOUT', null), + 'image_url_timeout' => env('TRMNL_IMAGE_URL_TIMEOUT', 30), //30 seconds; increase on low-powered devices ], ];