disabled upcloud and vidcloud

This commit is contained in:
TPN
2024-04-01 14:38:02 +00:00
parent 45a3f2835d
commit f6871f8c64
2 changed files with 2 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ export const upcloudScraper = makeEmbed({
id: 'upcloud', id: 'upcloud',
name: 'UpCloud', name: 'UpCloud',
rank: 200, rank: 200,
disabled: true,
async scrape(ctx) { async scrape(ctx) {
// Example url: https://dokicloud.one/embed-4/{id}?z= // Example url: https://dokicloud.one/embed-4/{id}?z=
const parsedUrl = new URL(ctx.url.replace('embed-5', 'embed-4')); const parsedUrl = new URL(ctx.url.replace('embed-5', 'embed-4'));

View File

@@ -6,6 +6,7 @@ export const vidCloudScraper = makeEmbed({
id: 'vidcloud', id: 'vidcloud',
name: 'VidCloud', name: 'VidCloud',
rank: 201, rank: 201,
disabled: true,
async scrape(ctx) { async scrape(ctx) {
// Both vidcloud and upcloud have the same embed domain (rabbitstream.net) // Both vidcloud and upcloud have the same embed domain (rabbitstream.net)
const result = await upcloudScraper.scrape(ctx); const result = await upcloudScraper.scrape(ctx);