Fixed issue with index in uri template matcher
This commit is contained in:
@@ -274,7 +274,7 @@ feature -- Match
|
|||||||
vv := "/"
|
vv := "/"
|
||||||
nb := 0
|
nb := 0
|
||||||
until
|
until
|
||||||
vv.is_empty or q + l_offset > a_uri.count
|
vv.is_empty or q + l_offset + 1 > a_uri.count
|
||||||
loop
|
loop
|
||||||
vv := next_path_variable_value (a_uri, q + l_offset + 1, l_next_literal_separator)
|
vv := next_path_variable_value (a_uri, q + l_offset + 1, l_next_literal_separator)
|
||||||
l_offset := l_offset + vv.count + 1
|
l_offset := l_offset + vv.count + 1
|
||||||
|
|||||||
Reference in New Issue
Block a user