Fix hex conversion helper

This commit is contained in:
Nikolay Kim 2020-09-21 09:25:53 +06:00
parent 98378cab0d
commit 3d6d3d9725
3 changed files with 6 additions and 2 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-router"
version = "0.3.6"
version = "0.3.7"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Path router"
keywords = ["ntex"]

View file

@ -54,7 +54,7 @@ fn from_hex(v: u8) -> Option<u8> {
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