From 4e5131ed36e9e4d94b515d552ac817ac1eed933c Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Sat, 6 Dec 2025 21:36:41 +0000 Subject: [PATCH] Update franime/franime.js --- franime/franime.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/franime/franime.js b/franime/franime.js index a66e70f..cc83451 100644 --- a/franime/franime.js +++ b/franime/franime.js @@ -7,7 +7,7 @@ async function searchResults(keyword) { .filter(anime => anime.title.toLowerCase().includes(keyword.toLowerCase())) .map(anime => ({ href: anime.id.toString(), - title: anime.title, + title: (anime.title || anime.title0), image: anime.affiche })); @@ -118,8 +118,8 @@ async function extractStreamUrl(id) { const streams = []; - if (vf) streams.push("VOSTFR", vf); - if (vo) streams.push("VF", vo); + if (vo) streams.push("VF", vf); + if (vf) streams.push("VOSTFR", vo); const final = { streams,