talons

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

commit 34e6bd711aa14605f7e0106d6ed9bd9ea36d6e49
parent 28a6035db2300393f163ae28dada3efbed1c11d1
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)"));