commit ae9762c4e07fe6eb3c71176d080846190e2cc306
parent 7be200e62e4ea1debbbec0c17fd0c41cc1946648
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Tue, 21 Oct 2014 17:08:27 +0200
RSSyl: fix markup escaping in one more alertpanel_error in rssyl_update_feed()
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c
@@ -218,8 +218,8 @@ gboolean rssyl_update_feed(RFolderItem *ritem, gboolean verbose)
/* both libcurl and libfeed were happy, but we weren't */
debug_print("RSSyl: Error processing feed\n");
if( verbose )
- alertpanel_error(_("Couldn't process feed at\n<b>%s</b>\n\nPlease contact developers, this should not happen."),
- feed_get_url(ctx->feed));
+ alertpanel_error(g_markup_printf_escaped(_("Couldn't process feed at\n<b>%s</b>\n\nPlease contact developers, this should not happen."),
+ feed_get_url(ctx->feed)));
log_error(LOG_PROTOCOL, RSSYL_LOG_ERROR_PROC, ctx->feed->url);
}