1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-26 17:46:52 +00:00

OPDS Publisher Indexing

This commit is contained in:
DarkSir23 2017-11-01 11:35:01 -04:00 committed by evilhero
parent bf3442fad3
commit fd30eadfe6

View file

@ -223,7 +223,7 @@ class OPDS(object):
links.append(getLink(href='/opds?cmd=Publishers',type='application/atom+xml; profile=opds-catalog; kind=navigation',rel='self'))
allcomics = mylar.helpers.havetotals()
for comic in allcomics:
if quote_plus(comic['ComicPublisher']) == kwargs['pubid'] and comic['haveissues'] > 0:
if comic['ComicPublisher'] == kwargs['pubid'] and comic['haveissues'] > 0:
entries.append(
{
'title': '%s (%s) (%)' % (comic['ComicName'], comic['ComicYear'], comic['haveissues']),