Use to_string_8 instead of as_string_8 in this case.

This commit is contained in:
2020-02-26 22:33:25 +01:00
parent 98452e13e2
commit 791b19a86e

View File

@@ -64,7 +64,7 @@ feature -- Query: url-decoded
if attached {READABLE_STRING_32} n as n32 then if attached {READABLE_STRING_32} n as n32 then
Result := url_encoded_string (n32) Result := url_encoded_string (n32)
else else
Result := n.as_string_8 Result := n.to_string_8
end end
end end