From ed73f5de6c66ef408f513f54cafee8d2a22e6965 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Mon, 9 Jun 2025 15:32:15 +0100 Subject: [PATCH] fix: replace incorrect hardcoded SUPPORTED_RESOURCES with supportedResources in DebridioPreset --- packages/core/src/presets/debridio.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/core/src/presets/debridio.ts b/packages/core/src/presets/debridio.ts index 5eef39a0..00805cb1 100644 --- a/packages/core/src/presets/debridio.ts +++ b/packages/core/src/presets/debridio.ts @@ -51,11 +51,7 @@ export class DebridioPreset extends Preset { DESCRIPTION: 'Torrent streaming using Debrid providers.', OPTIONS: options, SUPPORTED_STREAM_TYPES: [constants.DEBRID_STREAM_TYPE], - SUPPORTED_RESOURCES: [ - constants.STREAM_RESOURCE, - constants.META_RESOURCE, - constants.CATALOG_RESOURCE, - ], + SUPPORTED_RESOURCES: supportedResources, }; }