commit dbedfb9340ffe9a76c2ab6ba3f26c244df00fb54
parent 23c0630c1c263783d9a4657bb64ad81fc6d86b05
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Thu, 27 Nov 2014 02:12:42 +0100
RSSyl: Do not run html entity replacement on URL and item id strings when adding an item.
Diffstat:
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
@@ -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. */