Fix crash for relative links
This commit is contained in:
parent
5f5c250272
commit
1b6441e03e
@ -431,7 +431,7 @@ extension Element {
|
|||||||
|
|
||||||
// Find the common elements of the path, which can be discarded
|
// Find the common elements of the path, which can be discarded
|
||||||
var index = 0
|
var index = 0
|
||||||
while pageParts[index] == ownParts[index] {
|
while index < pageParts.count && index < ownParts.count && pageParts[index] == ownParts[index] {
|
||||||
index += 1
|
index += 1
|
||||||
}
|
}
|
||||||
// The relative path needs to go down to the first common folder,
|
// The relative path needs to go down to the first common folder,
|
||||||
|
Loading…
Reference in New Issue
Block a user