mirror of
https://github.com/evilhero/mylar
synced 2025-03-09 13:24:53 +00:00
FIX: Windows users were unable to view more detailed information on a given issue - the 'i' icon beside each issue that is in Downloaded status AND is a cbz file.
This commit is contained in:
parent
db093f7a75
commit
2be2c78a00
1 changed files with 2 additions and 0 deletions
|
@ -3791,6 +3791,8 @@ class WebInterface(object):
|
|||
downloadthis.exposed = True
|
||||
|
||||
def IssueInfo(self, filelocation):
|
||||
filelocation = filelocation.encode('ASCII')
|
||||
filelocation = urllib.unquote_plus(filelocation).decode('utf8')
|
||||
issuedetails = helpers.IssueDetails(filelocation)
|
||||
#print str(issuedetails)
|
||||
issueinfo = '<table width="500"><tr><td>'
|
||||
|
|
Loading…
Add table
Reference in a new issue