From 75b69f38fcd75e271d60afd35b42c2c203f8c2ad Mon Sep 17 00:00:00 2001 From: Chubby Granny Chaser Date: Fri, 28 Jun 2024 13:43:57 +0100 Subject: [PATCH] chore: removing extra line on main.py --- src/main/services/download/http-download.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/services/download/http-download.ts b/src/main/services/download/http-download.ts index bf290379..1ce99825 100644 --- a/src/main/services/download/http-download.ts +++ b/src/main/services/download/http-download.ts @@ -54,7 +54,9 @@ export class HttpDownload { private removeTrackerFile() { if (fs.existsSync(this.trackerFilePath)) { - fs.rm(this.trackerFilePath, () => {}); + fs.rm(this.trackerFilePath, (err) => { + logger.error(err); + }); } }