From fd149c9c7dc96c7f24d05e91ecb847791932817e Mon Sep 17 00:00:00 2001
From: Kris Lamoureux <kris@lamoureux.io>
Date: Fri, 21 Mar 2025 00:47:00 -0400
Subject: [PATCH] Fix timestamp reference for completion dates

---
 tarc/main.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tarc/main.py b/tarc/main.py
index 8ddc66f..cdf5f13 100644
--- a/tarc/main.py
+++ b/tarc/main.py
@@ -115,8 +115,8 @@ def scan_torrents(qb_client, engine):
             )
             if not torrent_instance:
                 completed_on = (
-                    datetime.fromtimestamp(torrent.completed)
-                    if torrent.completed
+                    datetime.fromtimestamp(torrent.completion_on)
+                    if torrent.completion_on
                     else None
                 )
                 torrent_instance = Torrent(
@@ -154,7 +154,7 @@ def scan_torrents(qb_client, engine):
             session.commit()
             if file_counter > 0:
                 print(torrent.hash)
-            else:
+            elif torrent.progress == 1:
                 print(f"[CHECKED]: {torrent.name}")