bases update
parent
6205948682
commit
aa0cb59499
13
Content.py
13
Content.py
|
@ -173,7 +173,18 @@ class Content:
|
|||
encodedData = urllib.urlencode(data)
|
||||
else:
|
||||
encodedData = None
|
||||
response = opener.open(url, encodedData)
|
||||
try:
|
||||
response = opener.open(url, encodedData)
|
||||
except urllib2.HTTPError as e:
|
||||
if e.code == 404:
|
||||
print '[makeRequest]: Not Found! HTTP Error, e.code=' + str(e.code)
|
||||
return
|
||||
elif e.code in [503]:
|
||||
print '[makeRequest]: Denied, HTTP Error, e.code=' + str(e.code)
|
||||
return
|
||||
else:
|
||||
print '[makeRequest]: HTTP Error, e.code=' + str(e.code)
|
||||
|
||||
if response.info().get('Content-Encoding') == 'gzip':
|
||||
buf = StringIO(response.read())
|
||||
f = gzip.GzipFile(fileobj=buf)
|
||||
|
|
2
Core.py
2
Core.py
|
@ -62,7 +62,7 @@ class Core:
|
|||
('«', '"'),
|
||||
('»', '"'),
|
||||
)
|
||||
scrapperDB_ver = {'en':'1.1', 'ru':'1.2'}
|
||||
scrapperDB_ver = {'en':'1.1', 'ru':'1.3'}
|
||||
|
||||
print 'SYS ARGV: ' + str(sys.argv)
|
||||
|
||||
|
|
|
@ -197,10 +197,8 @@ class TorrentPlayer(xbmc.Player):
|
|||
# mp4 fix
|
||||
label = os.path.basename(self.torrent.getFilePath(self.contentId))
|
||||
isMP4 = False
|
||||
if '.' in label:
|
||||
ext = label.split('.')[-1]
|
||||
if ext.lower() == 'mp4':
|
||||
isMP4 = True
|
||||
if '.' in label and str(label.split('.')[-1]).lower() == 'mp4':
|
||||
isMP4 = True
|
||||
# print 'setup_torrent: '+str((self.contentId, Offset, isMP4, label, ext))
|
||||
self.torrent.continueSession(self.contentId, Offset=Offset, isMP4=isMP4)
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
[B]Version 2.2.9[/B]
|
||||
[+] .torrent Проигрыватель: Теперь .torrent не теряется при обновлении окна Kodi
|
||||
[+] Проигрыватель: Улучшенная настройка сессии из cherrytorrent
|
||||
[+] Списки Медиа: Обновление баз на русском
|
||||
|
||||
[B]Version 2.2.8[/B]
|
||||
[+] Добавлен Украинский язык (by kharts)
|
||||
|
|
Loading…
Reference in New Issue