Fix bug #4237 - 403 is Forbidden not Unauthorized
authorColin Leroy <colin@colino.net>
Sat, 10 Aug 2019 15:35:17 +0000 (17:35 +0200)
committerColin Leroy <colin@colino.net>
Sat, 10 Aug 2019 15:35:17 +0000 (17:35 +0200)
src/plugins/rssyl/rssyl_update_feed.c

index 31b4228a0166583450edda7b6a090a8a921366d1..bd4ead8515aa31a070ac77fd32e726bb4133dc4e 100644 (file)
@@ -107,7 +107,7 @@ void rssyl_fetch_feed(RFetchCtx *ctx, RSSylVerboseFlags verbose)
                                ctx->error = g_strdup(_("401 (Authorisation required)"));
                                break;
                        case 403:
-                               ctx->error = g_strdup(_("403 (Unauthorised)"));
+                               ctx->error = g_strdup(_("403 (Forbidden)"));
                                break;
                        case 404:
                                ctx->error = g_strdup(_("404 (Not found)"));