chore: removing extra line on main.py

This commit is contained in:
Chubby Granny Chaser 2024-06-28 13:43:57 +01:00
parent 50a1ba1dea
commit 75b69f38fc
No known key found for this signature in database

View File

@ -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);
});
}
}