chore(fetcher): enable keepalive

This commit is contained in:
WebStreamr 2025-06-05 10:29:11 +00:00
parent 63a53a18cc
commit 65d2d0ac83
No known key found for this signature in database

View file

@ -213,7 +213,7 @@ export class Fetcher {
let response;
try {
response = await fetch(url, { ...init, signal: controller.signal });
response = await fetch(url, { ...init, keepalive: true, signal: controller.signal });
} finally {
clearTimeout(timer);
}