This commit is contained in:
Alhaziel01
2021-07-05 19:51:47 +02:00
parent 2662277a71
commit 3103864308
6 changed files with 81 additions and 12 deletions

View File

@@ -245,6 +245,11 @@ def run(item=None):
elif item.action == "add_serie_to_library":
from core import videolibrarytools
videolibrarytools.add_tvshow(item, channel)
# Special action for adding a serie to the library
elif item.action == "add_to_library":
from core import videolibrarytools
videolibrarytools.add_to_videolibrary(item, channel)
# Special action for downloading all episodes from a serie
elif item.action == "download_all_episodes":