talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 432dd7cfc695700480a832aee278f536a298ce01
parent 1e1dd7d7f9b25845a838ab32e94ba7502628c344
Author: Colin Leroy <colin@colino.net>
Date:   Sat, 10 Aug 2019 17:35:17 +0200

Fix bug #4237 - 403 is Forbidden not Unauthorized

Diffstat:
Msrc/plugins/rssyl/rssyl_update_feed.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c @@ -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)"));