From 5d7db3e727d3f9b9ba42a5aaedf925fde6146c9d Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 11 Jun 2019 12:31:22 +0100 Subject: [Web] Change request.base path encoding to utf-8 A user reported a problem with setting base path resulting in this error: encoding with 'idna' codec failed (UnicodeError: label too long) It is likely the base path is longer than 63 chars, which is unusual, however the idna codec is for domain name not paths so switch to utf-8. Fixes: #3261 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d2edd9cf..12400dd90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Fix TypeError in Peers Tab setting country flag. - Fix reverse proxy header TypeError (#3260). +- Fix request.base 'idna' codec error (#3261). ### Documentation -- cgit