fix encryption

pull/1/head
DiMartinoXBMC 2015-06-28 18:14:36 +03:00
parent 826e03da1b
commit 6205948682
3 changed files with 5 additions and 5 deletions

View File

@ -311,7 +311,7 @@ class Core:
if action2 == 'delete': if action2 == 'delete':
db.delete(addtime) db.delete(addtime)
xbmc.executebuiltin('Container.Refresh') xbmc.executebuiltin('Container.Refresh')
showMessage(self.localize('Download Status'), self.localize('Deleted and Stopped!')) showMessage(self.localize('Download Status'), self.localize('Stopped and Deleted!'))
if action2 == 'pause': if action2 == 'pause':
db.update_status(addtime, 'pause') db.update_status(addtime, 'pause')

View File

@ -97,8 +97,8 @@ class Torrent():
hasher.update(string.encode('utf-8', 'ignore')) hasher.update(string.encode('utf-8', 'ignore'))
return hasher.hexdigest() return hasher.hexdigest()
def downloadProcess(self, contentId=None): def downloadProcess(self, contentId=None, encrytion=True):
return self.player.downloadProcess(contentId) return self.player.downloadProcess(contentId, encrytion)
def initSession(self): def initSession(self):
return self.player.initSession() return self.player.initSession()

View File

@ -206,7 +206,7 @@ def localize(text):
'Download via Libtorrent':'Скачать Libtorrent\'ом', 'Download via Libtorrent':'Скачать Libtorrent\'ом',
'Download Status':'Статус Загрузки', 'Download Status':'Статус Загрузки',
'Download has not finished yet':'Загрука не завершена', 'Download has not finished yet':'Загрука не завершена',
'Deleted and Stopped!':'Загрузка удалена и остановлена!', 'Stopped and Deleted!':'Загрузка остановлена и удалена!',
'Unpaused!':'Возобновлено!', 'Unpaused!':'Возобновлено!',
'Paused!':'Приостановлено!', 'Paused!':'Приостановлено!',
'Stopped!':'Остановлено!', 'Stopped!':'Остановлено!',
@ -426,7 +426,7 @@ def localize(text):
'Download via Libtorrent':'Завантажити Libtorrent\'ом', 'Download via Libtorrent':'Завантажити Libtorrent\'ом',
'Download Status':'Статус завантаження', 'Download Status':'Статус завантаження',
'Download has not finished yet':'Завантаження не завершене', 'Download has not finished yet':'Завантаження не завершене',
'Deleted and Stopped!':'Вилучено та зупинено!', 'Stopped and Deleted!':'Зупинено та Вилучено!',
'Unpaused!':'Відновлено!', 'Unpaused!':'Відновлено!',
'Paused!':'Призупинено!', 'Paused!':'Призупинено!',
'Stopped!':'Зупинено!', 'Stopped!':'Зупинено!',