diff --git a/src/modules/processing/services/rutube.js b/src/modules/processing/services/rutube.js index 672d9f59..1e1df015 100644 --- a/src/modules/processing/services/rutube.js +++ b/src/modules/processing/services/rutube.js @@ -38,7 +38,7 @@ export default async function(obj) { return { error: ['ErrorLengthLimit', maxVideoDuration / 60000] }; let m3u8 = await fetch(play.video_balancer.m3u8) - .then((r) => { return r.text() }) + .then(r => r.text()) .catch(() => {}); if (!m3u8) return { error: 'ErrorCouldntFetch' };