mirror of
https://github.com/evilhero/mylar
synced 2024-12-25 17:16:51 +00:00
FIX:(#995) Fix for Add to Readinglist icon always returning IssueID not found
This commit is contained in:
parent
e58f17f958
commit
51777e8e19
1 changed files with 1 additions and 1 deletions
|
@ -2125,7 +2125,7 @@ class WebInterface(object):
|
|||
markasRead.exposed = True
|
||||
|
||||
def addtoreadlist(self, IssueID):
|
||||
read = readinglist.Readinglist(IssueID)
|
||||
read = readinglist.Readinglist(IssueID=IssueID)
|
||||
read.addtoreadlist()
|
||||
return
|
||||
#raise cherrypy.HTTPRedirect("comicDetails?ComicID=%s" % readlist['ComicID'])
|
||||
|
|
Loading…
Reference in a new issue