fix tracker.py to handle m0nkrus scraper for downloads

This commit is contained in:
Vxrtrauter
2025-10-18 02:31:00 +02:00
parent bd8320a26c
commit 10c935e852
+6
View File
@@ -19,6 +19,12 @@ def get_item_url(item, posts, post_titles): # softwarelist currentitem, post lis
if state.debug:
print("Found post URL: ", post_links[0])
return post_links[0]
if state.tracker == "m0nkrus":
item_dict = posts[post_index]
_, post_links, _ = format_data([item_dict])
if state.debug:
print("Found post URL: ", post_links[0])
return post_links[0]
return None