- Aggiungi alla videoteca se non si sa se è un film o una serie

This commit is contained in:
Alhaziel01
2021-07-05 20:08:41 +02:00
parent 79198b9f0e
commit 6cca77bcf2
4 changed files with 24 additions and 3 deletions

View File

@@ -237,6 +237,11 @@ def run(item=None):
from core import videolibrarytools
videolibrarytools.add_tvshow(item, channel)
# Special action for adding a undefined 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":
from specials import downloads