Make internal linking only have store-relative links
This commit is contained in:
parent
3e4b0e4bb8
commit
46bf387fc3
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ fn links_into_values(links: Vec<StoreId>) -> Vec<Result<Value>> {
|
||||||
links
|
links
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.unique()
|
.unique()
|
||||||
.map(|s| s.to_str().map_err_into(LEK::InternalConversionError))
|
.map(|s| s.without_base().to_str().map_err_into(LEK::InternalConversionError))
|
||||||
.map(|elem| elem.map(Value::String))
|
.map(|elem| elem.map(Value::String))
|
||||||
.sorted_by(|a, b| {
|
.sorted_by(|a, b| {
|
||||||
match (a, b) {
|
match (a, b) {
|
||||||
|
|
Loading…
Reference in a new issue