Add a forgotten RSSyl: prefix to log_print message from previous commit.
authorAndrej Kacian <andrej@kacian.sk>
Mon, 19 Oct 2015 14:55:16 +0000 (16:55 +0200)
committerAndrej Kacian <andrej@kacian.sk>
Mon, 19 Oct 2015 14:55:16 +0000 (16:55 +0200)
src/plugins/rssyl/rssyl_update_feed.c

index 398a64216532b3afee130df4b2be94562b977338..eef5753fdbea06188020d282124f8ad910706de0 100644 (file)
@@ -150,8 +150,9 @@ void rssyl_fetch_feed(RFetchCtx *ctx, gboolean verbose)
                } else if (feed_get_title(ctx->feed) == NULL) {
                        /* We shouldn't do this, since a title is mandatory. */
                        feed_set_title(ctx->feed, _("Untitled feed"));
-                       log_print(LOG_PROTOCOL, _("Possibly invalid feed without title at %s.\n"),
-                                               feed_get_url(ctx->feed));
+                       log_print(LOG_PROTOCOL,
+                                       _("RSSyl: Possibly invalid feed without title at %s.\n"),
+                                       feed_get_url(ctx->feed));
                }
        }
 }