0.8.4
parent
afdd8cc3c2
commit
34c703c4e8
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="script.module.pyrrent2http" name="pyrrent2http" version="0.8.3" provider-name="inpos">
|
||||
<addon id="script.module.pyrrent2http" name="pyrrent2http" version="0.8.4" provider-name="inpos">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.14.0"/>
|
||||
<import addon="script.module.libtorrent" />
|
||||
|
|
|
@ -279,8 +279,7 @@ class TorrentFS(object):
|
|||
self.setPriority(i, 1)
|
||||
else:
|
||||
self.setPriority(i, 0)
|
||||
def Status(self):
|
||||
return self.handle.status()
|
||||
|
||||
def Shutdown(self):
|
||||
self.shuttingDown = True
|
||||
if len(self.openedFiles) > 0:
|
||||
|
@ -785,7 +784,7 @@ class Pyrrent2http(object):
|
|||
info = self.TorrentFS.info
|
||||
#tstatus = self.torrentHandle.status()
|
||||
#tstatus = self.TorrentFS.handle.status()
|
||||
tstatus = self.TorrentFS.Status()
|
||||
tstatus = self.torrentHandle.status()
|
||||
|
||||
status = {
|
||||
'name' : info.name(),
|
||||
|
|
Loading…
Reference in New Issue