-
-
Notifications
You must be signed in to change notification settings - Fork 292
Closed
Labels
Description
Depending on max recursive depth and traversal order, relative child URLs may not be correctly updated.
For example, take a 3-page site with the following references:
pageA -> pageB
pageA -> pageC
pageB -> pageC
With max recursive depth of 1, all 3 pages should be reachable and entire site should be downloaded correctly. However, when traversing pageA->pageB, reference from pageB->pageC is not processed because max recursive depth is reached. So pageB has a dangling reference, even though pageC is downloaded.
Would it be possible to compute the relative path to pageC, even if pageC ends up being downloaded later, to address this issue?