diff --git a/channels/animeworld.py b/channels/animeworld.py index fb63849e..fcfbfa82 100644 --- a/channels/animeworld.py +++ b/channels/animeworld.py @@ -79,6 +79,7 @@ def search(item, texto): support.log(texto) item.args = 'noorder' item.url = host + '/search?keyword=' + texto + item.contentType = 'tvshow' try: return peliculas(item) # Continua la ricerca in caso di errore @@ -98,10 +99,13 @@ def peliculas(item): action='findvideos' else: if item.args != 'noorder' and not item.url[-1].isdigit(): item.url += order() # usa l'ordinamento di configura canale - patron= r'
\s*]+>\s*\d+)\) )?(?:\((?P[^\)]+)\))?"[^>]+>[^>]+>[^>]+>[^>]+>\s*(?:
(?P[^<]+)
)?' + patron= r'
\s*]+>\s*\d+)\) )?(?:\((?P[^\)]+)\))?"[^>]+>[^>]+>(?:\s*
[^>]+>)?\s*(?:
(?P[^<]+)
)?' action='episodios' # Controlla la lingua se assente + patronNext=r'href="([^"]+)" rel="next"' + type_content_dict={'movie':['movie', 'special']} + type_action_dict={'findvideos':['movie', 'special']} check_lang = item.url def itemHook(item): if not item.contentLanguage: @@ -113,9 +117,7 @@ def peliculas(item): item.title += support.typo(item.contentLanguage,'_ [] color kod') return item - patronNext=r'href="([^"]+)" rel="next"' - type_content_dict={'movie':['movie']} - type_action_dict={'findvideos':['movie']} + return locals() diff --git a/specials/autorenumber.py b/specials/autorenumber.py index 82803039..c8360d89 100644 --- a/specials/autorenumber.py +++ b/specials/autorenumber.py @@ -300,7 +300,7 @@ def make_list(itemlist, item, typography, dict_series, ID, SEASON, EPISODE, MODE regular = {} complete = {} allep = 1 - ep = 1 + ep = 0 specialep = 0 for episode in EpList: complete[allep] = [str(episode[1]) + 'x' + str(episode[2]), episode[0]]