From f5b47a2b7e2b998405c9ab8515b2a2dfd4c47aaf Mon Sep 17 00:00:00 2001 From: jj Date: Mon, 16 Dec 2024 17:42:39 +0000 Subject: [PATCH] api/tunnel: adjust estimate multiplier to 1.1 --- api/src/stream/shared.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/stream/shared.js b/api/src/stream/shared.js index 9a2b6779..ec06339d 100644 --- a/api/src/stream/shared.js +++ b/api/src/stream/shared.js @@ -50,7 +50,7 @@ export function pipe(from, to, done) { from.pipe(to); } -export async function estimateTunnelLength(streamInfo, multiplier = 1) { +export async function estimateTunnelLength(streamInfo, multiplier = 1.1) { let urls = streamInfo.urls; if (!Array.isArray(urls)) { urls = [ urls ];