mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 04:35:09 +01:00
Fix superstream
This commit is contained in:
parent
6c8cc63cbc
commit
53fe6031d1
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "movie-web",
|
"name": "movie-web",
|
||||||
"version": "3.2.1",
|
"version": "3.2.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"homepage": "https://movie-web.app",
|
"homepage": "https://movie-web.app",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -148,13 +148,13 @@ registerProvider({
|
|||||||
async scrape({ media, episode, progress }) {
|
async scrape({ media, episode, progress }) {
|
||||||
// Find Superstream ID for show
|
// Find Superstream ID for show
|
||||||
const searchQuery = {
|
const searchQuery = {
|
||||||
module: "Search3",
|
module: "Search4",
|
||||||
page: "1",
|
page: "1",
|
||||||
type: "all",
|
type: "all",
|
||||||
keyword: media.meta.title,
|
keyword: media.meta.title,
|
||||||
pagelimit: "20",
|
pagelimit: "20",
|
||||||
};
|
};
|
||||||
const searchRes = (await get(searchQuery, true)).data;
|
const searchRes = (await get(searchQuery, true)).data.list;
|
||||||
progress(33);
|
progress(33);
|
||||||
|
|
||||||
const superstreamEntry = searchRes.find(
|
const superstreamEntry = searchRes.find(
|
||||||
|
Loading…
Reference in New Issue
Block a user