From a91381720f406b6a1f997f088eca64238989c6a2 Mon Sep 17 00:00:00 2001 From: Tzahi12345 Date: Thu, 20 Apr 2023 21:16:06 -0400 Subject: [PATCH] Added link in error message to get TiwtchDownloaderCLI --- backend/twitch.js | 2 +- docker-utils/GetTwitchDownloader.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/twitch.js b/backend/twitch.js index de2b1de..96f6c90 100644 --- a/backend/twitch.js +++ b/backend/twitch.js @@ -21,7 +21,7 @@ async function getCommentsForVOD(vodId) { const cliPath = `TwitchDownloaderCLI${cliExt}` if (!fs.existsSync(cliPath)) { - logger.error(`${cliPath} does not exist. Twitch chat download failed!`); + logger.error(`${cliPath} does not exist. Twitch chat download failed! Get it here: https://github.com/lay295/TwitchDownloader`); return null; } diff --git a/docker-utils/GetTwitchDownloader.py b/docker-utils/GetTwitchDownloader.py index 3229f3a..619054c 100644 --- a/docker-utils/GetTwitchDownloader.py +++ b/docker-utils/GetTwitchDownloader.py @@ -50,4 +50,4 @@ def getLatestCLIRelease(): searchString = r'.*CLI.*' + "LinuxArm.zip" if isArm else "Linux-x64.zip" getLatestFileInRepo("lay295/TwitchDownloader", searchString) -getLatestCLIRelease() \ No newline at end of file +getLatestCLIRelease()