From 8edca3678ddd1d5b8be2caf71b999de3df2eef89 Mon Sep 17 00:00:00 2001 From: Daniel <790119+DanTheMan827@users.noreply.github.com> Date: Fri, 20 Mar 2026 11:57:38 -0500 Subject: [PATCH] fix(api): remove domain checks from searchVideos --- js/api.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/api.js b/js/api.js index 2b6f394..70b9138 100644 --- a/js/api.js +++ b/js/api.js @@ -526,7 +526,6 @@ export class LosslessAPI { try { const response = await this.fetchWithRetry(`/search/?v=${encodeURIComponent(query)}`, { ...options, - allowedDomains: ['api.monochrome.tf', 'arran.monochrome.tf'], }); const data = await response.json(); const normalized = this.normalizeSearchResponse(data, 'videos');