From b0ab031441a0f2ccc629508948e4daa101afbc90 Mon Sep 17 00:00:00 2001 From: kodjomoustapha <107993382+kodjodevf@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:52:39 +0100 Subject: [PATCH] add extractor prefix name --- javascript/anime/src/en/allanime.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/anime/src/en/allanime.js b/javascript/anime/src/en/allanime.js index c265c0c2..bb6aeea1 100644 --- a/javascript/anime/src/en/allanime.js +++ b/javascript/anime/src/en/allanime.js @@ -7,7 +7,7 @@ const mangayomiSources = [{ "typeSource": "single", "isManga": false, "isNsfw": false, - "version": "0.0.3", + "version": "0.0.35", "dateFormat": "", "dateFormatLocale": "", "pkgPath": "anime/src/en/allanime.js" @@ -193,7 +193,7 @@ class DefaultExtension extends MProvider { videos.push(vid); } } else if (videoUrl.includes("streamlare.com") && altHosterSelection.some(element => 'streamlare' === element)) { - const vids = await streamlareExtractor(videoUrl); + const vids = await streamlareExtractor(videoUrl, 'Streamlare '); for (const vid of vids) { videos.push(vid); } @@ -203,7 +203,7 @@ class DefaultExtension extends MProvider { videos.push(vid); } } else if (videoUrl.includes("wish") && altHosterSelection.some(element => 'streamwish' === element)) { - const vids = await streamWishExtractor(videoUrl); + const vids = await streamWishExtractor(videoUrl, 'StreamWish '); for (const vid of vids) { videos.push(vid); }