fix(debrid): update error message for missing file link

This commit is contained in:
Viren070
2025-10-19 17:21:38 +01:00
parent e43e9adad8
commit 413bb5953a
+2 -2
View File
@@ -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,