mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
fix: Wiflix episode name & update baseUrl
This commit is contained in:
@@ -96,7 +96,9 @@ class DataLifeEngine extends MProvider {
|
||||
final epUrls = xpath(res,
|
||||
'//*[@class="hostsblock"]/div[@class="${eps[i]}"]/a[contains(@href,"https")]/@href');
|
||||
MChapter ep = MChapter();
|
||||
ep.name = "Episode ${i + 1}";
|
||||
ep.name = xpath(res,
|
||||
'//*[@class="eplist"]/li[contains(@rel,"${eps[i]}")]/text()')
|
||||
.first;
|
||||
ep.url = epUrls.join(",").replaceAll("/vd.php?u=", "");
|
||||
ep.scanlator = eps[i].contains('vf') ? 'VF' : 'VOSTFR';
|
||||
episodesList.add(ep);
|
||||
|
||||
@@ -2,7 +2,7 @@ import '../../../../model/source.dart';
|
||||
import 'src/frenchanime/frenchanime.dart';
|
||||
import 'src/wiflix/wiflix.dart';
|
||||
|
||||
const _datalifeengineVersion = "0.0.4";
|
||||
const _datalifeengineVersion = "0.0.45";
|
||||
const _datalifeengineSourceCodeUrl =
|
||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/datalifeengine/datalifeengine.dart";
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ Source get wiflixSource => _wiflixSource;
|
||||
|
||||
Source _wiflixSource = Source(
|
||||
name: "Wiflix",
|
||||
baseUrl: "https://wiflix.voto",
|
||||
baseUrl: "https://wiflix.bot",
|
||||
lang: "fr",
|
||||
typeSource: "datalifeengine",
|
||||
isManga: false,
|
||||
|
||||
Reference in New Issue
Block a user