diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-07-04 19:58:54 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-07-04 19:58:54 -0700 |
commit | a3e4a2f10afaccab17d9d74a6d4ee3f1265208fc (patch) | |
tree | bf89bbd46f2c348fef98f38ee345b061ba2fa486 /src | |
parent | af8ff1ec7bc115f714bc332263c379bf9d6c650e (diff) |
Normalize IPv6 addresses when generating URI strings
Diffstat (limited to 'src')
-rw-r--r-- | src/Uri.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Uri.cpp b/src/Uri.cpp index 3091b89..30c9671 100644 --- a/src/Uri.cpp +++ b/src/Uri.cpp @@ -1393,7 +1393,7 @@ namespace Uri { } if (!impl_->host.empty()) { if (ValidateIpv6Address(impl_->host)) { - buffer << '[' << impl_->host << ']'; + buffer << '[' << NormalizeCaseInsensitiveString(impl_->host) << ']'; } else { buffer << EncodeElement(impl_->host, REG_NAME_NOT_PCT_ENCODED); } |