From 81df32f7faa099c13ddf8e71c0a4f8aa2287ee16 Mon Sep 17 00:00:00 2001 From: DarkSir23 Date: Tue, 31 Oct 2017 23:24:32 -0400 Subject: [PATCH] OPDS Publishers Part 1 (testing) --- mylar/opds.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mylar/opds.py b/mylar/opds.py index 97a6d364..5ed93299 100644 --- a/mylar/opds.py +++ b/mylar/opds.py @@ -179,10 +179,10 @@ class OPDS(object): entries.append( { 'title': publisher, - 'id': 'publisher:%s' % publisher, + 'id': 'publisher:%s' % publisher['ComicPublisher'], 'updated': mylar.helpers.now(), - 'content': publisher, - 'href': '/opds?cmd=Publisher&id=%s' % quote_plus(publisher), + 'content': publisher['ComicPublisher'], + 'href': '/opds?cmd=Publisher&id=%s' % quote_plus(publisher['ComicPublisher']), 'kind': 'navigation', } )