From dbedfb9340ffe9a76c2ab6ba3f26c244df00fb54 Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Thu, 27 Nov 2014 02:12:42 +0100 Subject: [PATCH] RSSyl: Do not run html entity replacement on URL and item id strings when adding an item. --- src/plugins/rssyl/rssyl_add_item.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/rssyl/rssyl_add_item.c b/src/plugins/rssyl/rssyl_add_item.c index b0222713b..bfb531cc9 100644 --- a/src/plugins/rssyl/rssyl_add_item.c +++ b/src/plugins/rssyl/rssyl_add_item.c @@ -314,11 +314,11 @@ void rssyl_add_item(RFolderItem *ritem, FeedItem *feed_item) feed_item_set_title(feed_item, rssyl_format_string(feed_item_get_title(feed_item), TRUE, TRUE)); debug_print("RSSyl: fixing up URL\n"); feed_item_set_url(feed_item, rssyl_format_string(feed_item_get_url(feed_item), - TRUE, TRUE)); + FALSE, TRUE)); if( feed_item_get_id(feed_item) != NULL ) { debug_print("RSSyl: fixing up ID\n"); feed_item_set_id(feed_item, rssyl_format_string(feed_item_get_id(feed_item), - TRUE, TRUE)); + FALSE, TRUE)); } /* If there's a summary, but no text, use summary as text. */ -- 2.25.1