fix: correctly extract json error for error metas

This commit is contained in:
Viren070
2025-08-28 22:06:32 +01:00
parent 00053fb8ee
commit 5ddab33082
+1 -1
View File
@@ -33,7 +33,7 @@ router.get(
if (id.startsWith('aiostreamserror.')) {
res.status(200).json({
meta: StremioTransformer.createErrorMeta(
JSON.parse(decodeURIComponent(id.split('.').slice(0).join('.')))
JSON.parse(decodeURIComponent(id.split('.').slice(1).join('.')))
),
});
return;