This commit is contained in:
kodjomoustapha
2024-01-08 16:42:17 +01:00
parent 3a8a7b5400
commit 6a1c94dfe3
8 changed files with 9 additions and 45 deletions

View File

@@ -82,7 +82,7 @@ class DopeFlix extends MProvider {
@override
Future<MManga> getDetail(MSource source, String url) async {
url = Uri.parse(url).path;
url = getUrlWithoutDomain(url);
final res =
(await client.get(Uri.parse("${preferenceBaseUrl(source.id)}$url")))
.body;
@@ -146,7 +146,7 @@ class DopeFlix extends MProvider {
@override
Future<List<MVideo>> getVideoList(MSource source, String url) async {
url = Uri.parse(url).path;
url = getUrlWithoutDomain(url);
final res =
(await client.get(Uri.parse("${preferenceBaseUrl(source.id)}/$url")))
.body;