mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-26 18:41:51 +01:00
Disabled broken providers
This commit is contained in:
parent
606e55d552
commit
072b2d134b
@ -34,6 +34,7 @@ registerEmbedScraper({
|
|||||||
displayName: "UpCloud",
|
displayName: "UpCloud",
|
||||||
for: MWEmbedType.UPCLOUD,
|
for: MWEmbedType.UPCLOUD,
|
||||||
rank: 200,
|
rank: 200,
|
||||||
|
disabled: true, // encryption broke
|
||||||
async getStream({ url }) {
|
async getStream({ url }) {
|
||||||
// Example url: https://dokicloud.one/embed-4/{id}?z=
|
// Example url: https://dokicloud.one/embed-4/{id}?z=
|
||||||
const parsedUrl = new URL(url.replace("embed-5", "embed-4"));
|
const parsedUrl = new URL(url.replace("embed-5", "embed-4"));
|
||||||
|
@ -120,6 +120,7 @@ registerProvider({
|
|||||||
id: "hdwatched",
|
id: "hdwatched",
|
||||||
displayName: "HDwatched",
|
displayName: "HDwatched",
|
||||||
rank: 150,
|
rank: 150,
|
||||||
|
disabled: true, // very slow, haven't seen it work for a while
|
||||||
type: [MWMediaType.MOVIE, MWMediaType.SERIES],
|
type: [MWMediaType.MOVIE, MWMediaType.SERIES],
|
||||||
async scrape(options) {
|
async scrape(options) {
|
||||||
const { media, progress } = options;
|
const { media, progress } = options;
|
||||||
|
@ -9,6 +9,7 @@ registerProvider({
|
|||||||
id: "sflix",
|
id: "sflix",
|
||||||
displayName: "Sflix",
|
displayName: "Sflix",
|
||||||
rank: 50,
|
rank: 50,
|
||||||
|
disabled: true, // domain dead
|
||||||
type: [MWMediaType.MOVIE, MWMediaType.SERIES],
|
type: [MWMediaType.MOVIE, MWMediaType.SERIES],
|
||||||
async scrape({ media, episode, progress }) {
|
async scrape({ media, episode, progress }) {
|
||||||
let searchQuery = `${media.meta.title} `;
|
let searchQuery = `${media.meta.title} `;
|
||||||
|
Loading…
Reference in New Issue
Block a user