From 3d6d3d9725b6339a50ee329bed5d0649f60b50b9 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 21 Sep 2020 09:25:53 +0600 Subject: [PATCH] Fix hex conversion helper --- ntex-router/CHANGES.txt | 4 ++++ ntex-router/Cargo.toml | 2 +- ntex-router/src/quoter.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ntex-router/CHANGES.txt b/ntex-router/CHANGES.txt index ba12bb4e..59703e79 100644 --- a/ntex-router/CHANGES.txt +++ b/ntex-router/CHANGES.txt @@ -1,5 +1,9 @@ # Changes +## [0.3.7] - 2020-09-21 + +* Fix hex conversion helper + ## [0.3.6] - 2020-09-11 * Allow nested prefixed resources diff --git a/ntex-router/Cargo.toml b/ntex-router/Cargo.toml index 9308457e..51a6ca7c 100644 --- a/ntex-router/Cargo.toml +++ b/ntex-router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-router" -version = "0.3.6" +version = "0.3.7" authors = ["ntex contributors "] description = "Path router" keywords = ["ntex"] diff --git a/ntex-router/src/quoter.rs b/ntex-router/src/quoter.rs index 106f2b72..7bdd87fc 100644 --- a/ntex-router/src/quoter.rs +++ b/ntex-router/src/quoter.rs @@ -54,7 +54,7 @@ fn from_hex(v: u8) -> Option { Some(v - 0x30) // ord('0') == 0x30 } else if v >= b'A' && v <= b'F' { Some(v - 0x41 + 10) // ord('A') == 0x41 - } else if v > b'a' && v <= b'f' { + } else if v >= b'a' && v <= b'f' { Some(v - 0x61 + 10) // ord('a') == 0x61 } else { None