diff --git a/modules/core/cross_seed.py b/modules/core/cross_seed.py index ffbd615..601c0d0 100644 --- a/modules/core/cross_seed.py +++ b/modules/core/cross_seed.py @@ -56,7 +56,7 @@ class CrossSeed: "function": "cross_seed", "title": "Adding New Cross-Seed Torrent", "body": "\n".join(body), - "torrent_name": t_name, + "torrents": [t_name], "torrent_category": category, "torrent_save_path": dest, "torrent_tag": "cross-seed", @@ -113,7 +113,7 @@ class CrossSeed: "function": "tag_cross_seed", "title": "Tagging Cross-Seed Torrent", "body": body, - "torrent_name": t_name, + "torrents": [t_name], "torrent_category": t_cat, "torrent_tag": "cross-seed", "torrent_tracker": tracker, diff --git a/modules/core/recheck.py b/modules/core/recheck.py index 1fc2e5d..acefeb1 100644 --- a/modules/core/recheck.py +++ b/modules/core/recheck.py @@ -36,7 +36,7 @@ class ReCheck: "function": "recheck", "title": "Resuming Torrent", "body": body, - "torrent_name": torrent.name, + "torrents": [torrent.name], "torrent_category": torrent.category, "torrent_tracker": tracker["url"], "notifiarr_indexer": tracker["notifiarr"], @@ -82,7 +82,7 @@ class ReCheck: "function": "recheck", "title": "Resuming Torrent", "body": body, - "torrent_name": torrent.name, + "torrents": [torrent.name], "torrent_category": torrent.category, "torrent_tracker": tracker["url"], "notifiarr_indexer": tracker["notifiarr"], @@ -105,7 +105,7 @@ class ReCheck: "function": "recheck", "title": "Rechecking Torrent", "body": body, - "torrent_name": torrent.name, + "torrents": [torrent.name], "torrent_category": torrent.category, "torrent_tracker": tracker["url"], "notifiarr_indexer": tracker["notifiarr"], diff --git a/modules/core/remove_unregistered.py b/modules/core/remove_unregistered.py index 40d283d..24dd081 100644 --- a/modules/core/remove_unregistered.py +++ b/modules/core/remove_unregistered.py @@ -58,7 +58,7 @@ class RemoveUnregistered: "function": "untag_tracker_error", "title": "Untagging Tracker Error Torrent", "body": "\n".join(body), - "torrent_name": torrent.name, + "torrents": [torrent.name], "torrent_category": torrent.category, "torrent_tag": self.tag_error, "torrent_tracker": tracker["url"], @@ -165,7 +165,7 @@ class RemoveUnregistered: "function": "tag_tracker_error", "title": "Tag Tracker Error Torrents", "body": tor_error, - "torrent_name": self.t_name, + "torrents": [self.t_name], "torrent_category": self.t_cat, "torrent_tag": self.tag_error, "torrent_status": msg, @@ -185,7 +185,7 @@ class RemoveUnregistered: attr = { "function": "rem_unregistered", "title": "Removing Unregistered Torrents", - "torrent_name": self.t_name, + "torrents": [self.t_name], "torrent_category": self.t_cat, "torrent_status": msg, "torrent_tracker": tracker["url"], diff --git a/modules/core/tag_nohardlinks.py b/modules/core/tag_nohardlinks.py index 317c1eb..8d783a9 100644 --- a/modules/core/tag_nohardlinks.py +++ b/modules/core/tag_nohardlinks.py @@ -34,7 +34,7 @@ class TagNoHardLinks: "function": "tag_nohardlinks", "title": title, "body": "\n".join(body), - "torrent_name": torrent.name, + "torrents": [torrent.name], "torrent_category": torrent.category, "torrent_tag": self.nohardlinks_tag, "torrent_tracker": tracker["url"], @@ -63,7 +63,7 @@ class TagNoHardLinks: "function": "untag_nohardlinks", "title": "Untagging Previous Torrents that now have hardlinks", "body": "\n".join(body), - "torrent_name": torrent.name, + "torrents": [torrent.name], "torrent_category": torrent.category, "torrent_tag": self.nohardlinks_tag, "torrent_tracker": tracker["url"],