From 413bb5953a7d5146f653686162de359bfdb856c8 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Sun, 19 Oct 2025 17:21:38 +0100 Subject: [PATCH] fix(debrid): update error message for missing file link --- packages/core/src/debrid/stremthru.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/debrid/stremthru.ts b/packages/core/src/debrid/stremthru.ts index 01fe94e9..d151685c 100644 --- a/packages/core/src/debrid/stremthru.ts +++ b/packages/core/src/debrid/stremthru.ts @@ -333,9 +333,9 @@ export class StremThruInterface implements DebridService { ); if (!file?.link) { - throw new DebridError('No matching file found', { + throw new DebridError('Selected file was missing a link', { statusCode: 400, - statusText: 'No matching file found', + statusText: 'Selected file was missing a link', code: 'NO_MATCHING_FILE', headers: {}, body: file,