Commit c34a1e29 authored by Max Kellermann's avatar Max Kellermann

util/UriRelative: fix variable mixup

parent 41a69027
......@@ -173,7 +173,7 @@ uri_apply_relative(const std::string &relative_uri,
if (StringStartsWith(relative_path, "../"))
return {};
if (!StringIsEqual(relative_path, "."))
result += relative_uri;
result += relative_path;
return result;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment