fix: download path errors, improve print statements, add exception blocks to prevent errors from crashing the program, removed ability to add custom path on add_download as its not used, removed, fixed config format & parsing issues

This commit is contained in:
Vxrtrauter
2026-03-10 22:21:59 +01:00
parent 74e7fcfd70
commit 4e7e08c136
11 changed files with 25 additions and 28 deletions
+4 -1
View File
@@ -1006,7 +1006,10 @@ class MainWindow(QtWidgets.QMainWindow, QWidget):
pass
del state.active_downloads[magnet_link]
remove_download_log(magnet_link)
consoleLog(f"Cancelled download: {magnetdl.status().name}", True)
try:
consoleLog(f"Cancelled download: {magnetdl.status().name}", True)
except RuntimeError:
consoleLog(f"Cancelled download")
def deleteFileAction(self):
if not hasattr(self, '_context_menu_row'):