From ae9762c4e07fe6eb3c71176d080846190e2cc306 Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Tue, 21 Oct 2014 17:08:27 +0200 Subject: [PATCH] RSSyl: fix markup escaping in one more alertpanel_error in rssyl_update_feed() --- src/plugins/rssyl/rssyl_update_feed.c | 4 ++-- 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 index 603d000e9..7f032fac0 100644 --- 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%s\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%s\n\nPlease contact developers, this should not happen."), + feed_get_url(ctx->feed))); log_error(LOG_PROTOCOL, RSSYL_LOG_ERROR_PROC, ctx->feed->url); } -- 2.25.1