.*?)(?:
|)(?:(?P\d+)×)?(?P\d+)(?:\s+–\s+)?(?P[^<]+).*?)(?:
[^|]+)\|(?P[^|]+)\|(?P[^|]+)\|'
return locals()
diff --git a/core/support.py b/core/support.py
index 7647fb82..d1ef244d 100755
--- a/core/support.py
+++ b/core/support.py
@@ -552,13 +552,13 @@ def scrape(func):
if patronNext and inspect.stack()[1][3] not in ['newest'] and len(inspect.stack()) > 2 and inspect.stack()[2][3] not in ['get_channel_results']:
nextPage(itemlist, item, data, patronNext, function)
- for it in itemlist:
- if it.contentEpisodeNumber and it.contentSeason:
- it.title = '[B]{:d}x{:02d} - {}[/B]'.format(it.contentSeason, it.contentEpisodeNumber, it.infoLabels['title'] if it.infoLabels['title'] else it.fulltitle)
- if it.contentLanguage:
- it.title += typo(it.contentLanguage, '_ [] color kod')
- if it.quality:
- it.title += typo(it.quality, '_ [] color kod')
+ # for it in itemlist:
+ # if it.contentEpisodeNumber and it.contentSeason:
+ # it.title = '[B]{:d}x{:02d} - {}[/B]'.format(it.contentSeason, it.contentEpisodeNumber, it.infoLabels['title'] if it.infoLabels['title'] else it.fulltitle)
+ # if it.contentLanguage:
+ # it.title += typo(it.contentLanguage, '_ [] color kod')
+ # if it.quality:
+ # it.title += typo(it.quality, '_ [] color kod')
# next page for pagination
if pagination and len(matches) > pag * pagination and not search:
diff --git a/lib/proxytranslate.py b/lib/proxytranslate.py
index 4949430a..47be03b9 100644
--- a/lib/proxytranslate.py
+++ b/lib/proxytranslate.py
@@ -97,7 +97,7 @@ def process_request_proxy(url):
data = re.sub('\s(\w+)=(?!")([^<>\s]+)', r' \1="\2"', data)
data = re.sub('https://translate\.googleusercontent\.com/.*?u=(.*?)&usg=[A-Za-z0-9_-]+', '\\1', data)
- data = re.sub('https?://[a-zA-Z0-9-]+' + domain.replace('.', '-') + '\.translate\.goog(/[a-zA-Z0-9#/-]+)', 'https://' + domain + '\\1', data)
+ data = re.sub('https?://[a-zA-Z0-9-]*' + domain.replace('.', '-') + '\.translate\.goog(/[a-zA-Z0-9#/-]+)', 'https://' + domain + '\\1', data)
data = re.sub('\s+<', '<', data)
data = data.replace('&', '&').replace('https://translate.google.com/website?sl=' + SL + '&tl=' + TL + '&ajax=1&u=', '')