Fix dropload, filmpertutti (sezione aggiornamenti), disattivato filmstreaming (da errore anche da browser)

This commit is contained in:
marco
2022-12-03 14:58:49 +01:00
parent 5c56c5e1ec
commit 17f8cab8d7
6 changed files with 13 additions and 11 deletions

View File

@@ -146,7 +146,8 @@ chNumRis = {
def wait():
time.sleep(random.randint(1, 3))
pass
# time.sleep(random.randint(1, 3))
servers = []
@@ -202,7 +203,7 @@ for chItem in channel_list:
for it2 in itemlist:
# some sites refuse to search if the search term is too short
title = it2.fulltitle if it2.contentType == 'movie' else it2.contentSerieName
if title > 5:
if len(title) > 5:
firstContent = re.match('[ \w]*', title).group(0)
break