From 925fe21d03a95476eac8df3c66d02e070bcaa308 Mon Sep 17 00:00:00 2001 From: Vxrtrauter <101264710+Vxrtrauter@users.noreply.github.com> Date: Sat, 7 Mar 2026 14:00:00 +0100 Subject: [PATCH] Add logging and download tracking to direct downloads --- src/core/utils/network/download.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/utils/network/download.py b/src/core/utils/network/download.py index 26d866a..d5184af 100644 --- a/src/core/utils/network/download.py +++ b/src/core/utils/network/download.py @@ -23,4 +23,6 @@ def run_download(item, posts, post_titles): add_download_log(item, post_url, magnet_uri, False) def run_download_direct(magnet_uri): - add_download(magnet_uri) \ No newline at end of file + consoleLog(f"Direct download: {magnet_uri[:60]}") + add_download(magnet_uri) + add_download_log("Direct Download", "", magnet_uri, False) \ No newline at end of file