From 02bc5ec6aa25d7a81ddd136f29a6d62297fd49e3 Mon Sep 17 00:00:00 2001 From: Inrixia Date: Wed, 3 Apr 2024 12:30:58 +1300 Subject: [PATCH] Increase delivery timeout --- src/lib/Video.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Video.ts b/src/lib/Video.ts index 23c574b..9c17f3d 100644 --- a/src/lib/Video.ts +++ b/src/lib/Video.ts @@ -247,7 +247,7 @@ export class Video { // The number of available slots for making delivery requests, // limiting the rate of requests to avoid exceeding the API rate limit. private static AvalibleDeliverySlots = 2; - private static DeliveryTimeout = 61000; + private static DeliveryTimeout = 65000; private static DeliveryQueue: (() => void)[] = []; private static async requestDeliverySemaphore() {