From 1b5385d1ec51899ca2e612d6015402f565bd36e2 Mon Sep 17 00:00:00 2001 From: Daniel <790119+DanTheMan827@users.noreply.github.com> Date: Sat, 28 Mar 2026 15:33:14 -0500 Subject: [PATCH] fix(api): remove allowedDomains for getVideo - Removed 'allowedDomains' parameter from the fetchWithRetry method call in getVideoStreamUrl. --- js/api.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/api.js b/js/api.js index 8e968f3..b87b6da 100644 --- a/js/api.js +++ b/js/api.js @@ -638,7 +638,6 @@ export class LosslessAPI { const response = await this.fetchWithRetry(`/video/?id=${id}`, { type: 'streaming', - allowedDomains: ['api.monochrome.tf', 'arran.monochrome.tf'], }); const jsonResponse = await response.json();