From 1569479457ffb2472daa10f7d373262c112cec43 Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Tue, 6 Jan 2026 20:08:58 +0000 Subject: [PATCH] Update senshi/senshi.js --- senshi/senshi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/senshi/senshi.js b/senshi/senshi.js index 8adda99..466b90d 100644 --- a/senshi/senshi.js +++ b/senshi/senshi.js @@ -2,7 +2,7 @@ async function searchResults(keyword) { const results = []; const postData = `{"searchTerm":"${keyword}","page":1,"limit":100}`; try { - const response = await fetchv2("https://senshi.live/anime/filter", {}, "POST", postData); + const response = await fetchv2("https://senshi.live/anime/filter", { "Content-Type": "application/json", "Referer": "https://senshi.live/" }, "POST", postData); const data = await response.json(); if (data.data && Array.isArray(data.data)) {