Update franime/franime.js

This commit is contained in:
aka paul 2025-12-06 21:36:41 +00:00
parent cc9005ca7e
commit 4e5131ed36

View file

@ -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,