mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
Broken string
This commit is contained in:
parent
4754cc0bfc
commit
304aeae966
1 changed files with 2 additions and 2 deletions
|
@ -1092,10 +1092,10 @@ def folder_rss_feed(request, user_id, secret_token, unread_filter, folder_slug):
|
||||||
for story in stories:
|
for story in stories:
|
||||||
feed = Feed.get_by_id(story['story_feed_id'])
|
feed = Feed.get_by_id(story['story_feed_id'])
|
||||||
story_content = """%s<br><br><img src="//%s/rss_feeds/icon/%s" width="16" height="16"> %s""" % (
|
story_content = """%s<br><br><img src="//%s/rss_feeds/icon/%s" width="16" height="16"> %s""" % (
|
||||||
smart_unicode(story['story_content'],
|
smart_unicode(story['story_content']),
|
||||||
Site.objects.get_current().domain,
|
Site.objects.get_current().domain,
|
||||||
story['story_feed_id'],
|
story['story_feed_id'],
|
||||||
feed.feed_title if feed else "")
|
feed.feed_title if feed else ""
|
||||||
)
|
)
|
||||||
story_data = {
|
story_data = {
|
||||||
'title': "%s%s" % (("%s: " % feed.feed_title) if feed else "", story['story_title']),
|
'title': "%s%s" % (("%s: " % feed.feed_title) if feed else "", story['story_title']),
|
||||||
|
|
Loading…
Add table
Reference in a new issue