fix: don't show errors during catalog pagination to avoid repeated requests

This commit is contained in:
Viren070
2025-08-13 15:16:55 +01:00
parent 604ab023a8
commit d62330531d
+7
View File
@@ -332,6 +332,13 @@ export class AIOStreams {
extrasString
);
} catch (error) {
if (extras && extras.includes('skip')) {
return {
success: true,
data: [],
errors: [],
};
}
return {
success: false,
data: [],