From 7d432ee39fb083998670584d5b1779b415d29a4b Mon Sep 17 00:00:00 2001 From: ghost Date: Sat, 4 Nov 2023 11:24:31 +0200 Subject: [PATCH] fix qbittorrent api compatibility --- yggtracker.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/yggtracker.py b/yggtracker.py index bf15c6a..48c7e29 100644 --- a/yggtracker.py +++ b/yggtracker.py @@ -12,17 +12,17 @@ class yggtracker(object): name = 'YGGtracker' url = 'https://github.com/YGGverse/YGGtracker' - supported_categories = [ - 'all', - 'anime', - 'books', - 'games', - 'movies', - 'music', - 'pictures', - 'software', - 'tv' - ] + supported_categories = { + 'all':[], + 'anime':[], + 'books':[], + 'games':[], + 'movies':[], + 'music':[], + 'pictures':[], + 'software':[], + 'tv':[] + } def __init__(self): pass