From a179bdcadc25c0458536764b407fc3dfd2ecc4f0 Mon Sep 17 00:00:00 2001 From: Rafael A O Paulucci Date: Sat, 17 Oct 2020 11:30:00 -0300 Subject: [PATCH] Update Errors.ts Fix typo in `MISSING_ARIA2` and some capitalization --- src/Errors.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Errors.ts b/src/Errors.ts index 3c9a842..0f99f45 100644 --- a/src/Errors.ts +++ b/src/Errors.ts @@ -28,7 +28,7 @@ export const errors: {[key: number]: string} = { [ERROR_CODE.MISSING_FFMPEG]: 'FFmpeg is missing! Destreamer requires FFmpeg to merge videos', - [ERROR_CODE.MISSING_ARIA2]: 'FFmpeg is missing! Destreamer requires Aria2c to download videos', + [ERROR_CODE.MISSING_ARIA2]: 'Aria2c is missing! Destreamer requires Aria2c to download videos', [ERROR_CODE.UNK_FFMPEG_ERROR]: 'Unknown FFmpeg error', @@ -38,9 +38,9 @@ export const errors: {[key: number]: string} = { [ERROR_CODE.NO_ENCRYPTION]: 'Could not extract the encryption info from the playlist', - [ERROR_CODE.ARIA2C_CRASH]: 'The aria2c rpc server crashed with the previous message', + [ERROR_CODE.ARIA2C_CRASH]: 'The Aria2c RPC server crashed with the previous message', - [ERROR_CODE.NO_CONNECT_ARIA2C]: 'Could not connect to Aria2c json-rpc webSocket before timeout!', + [ERROR_CODE.NO_CONNECT_ARIA2C]: 'Could not connect to Aria2c JSON-RPC WebSocket before timeout!', [ERROR_CODE.NO_DAEMON_PORT]: 'Could not get a free port to use' };