Browse Source

Fix superstream

pull/475/head
Jip Fr 2 years ago
parent
commit
53fe6031d1
  1. 2
      package.json
  2. 4
      src/backend/providers/superstream/index.ts

2
package.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "movie-web",
"version": "3.2.1",
"version": "3.2.2",
"private": true,
"homepage": "https://movie-web.app",
"dependencies": {

4
src/backend/providers/superstream/index.ts

@ -148,13 +148,13 @@ registerProvider({ @@ -148,13 +148,13 @@ registerProvider({
async scrape({ media, episode, progress }) {
// Find Superstream ID for show
const searchQuery = {
module: "Search3",
module: "Search4",
page: "1",
type: "all",
keyword: media.meta.title,
pagelimit: "20",
};
const searchRes = (await get(searchQuery, true)).data;
const searchRes = (await get(searchQuery, true)).data.list;
progress(33);
const superstreamEntry = searchRes.find(

Loading…
Cancel
Save