mirror of
https://git.luna-app.eu/50n50/sources
synced 2025-12-21 21:26:19 +01:00
Update franime/franime.js
This commit is contained in:
parent
cc9005ca7e
commit
4e5131ed36
1 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue