Skip to content

Commit

Permalink
1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
morsela committed May 2, 2016
1 parent 4c9346b commit 1f38925
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.subtitles.torec"
name="Torec"
version="1.0.6"
version="1.0.7"
provider-name="slmosl">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.0.7
- added support for zip and rar archives (gklein)

1.0.6
- bypass for new issue with TOO MANY DL
- some minor speedups
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/TorecSubtitlesDownloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def _requestSubtitle(self, subID, subURL):
def getDownloadLink(self, subID, optionID, subURL, persist=True):
requestID = self._requestSubtitle(subID, subURL)

params = {"sub_id" : subID, "code": optionID, "sh" : "yes", "guest" : requestID, "timewaited" : "9"}
params = {"sub_id" : subID, "code": optionID, "sh" : "yes", "guest" : requestID, "timewaited" : "10"}
for i in xrange(16):
response = self.urlHandler.request("%s/ajax/sub/downloadun.asp" % self.BASE_URL, params, ajax=True)
if (not persist):
Expand Down

0 comments on commit 1f38925

Please sign in to comment.