You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
Duplicate page detection is based on data-url attribute, but the URL is not normalized. So, if you have a page structure like:
.../page1.html
.../dir2/page2.html
And open up first page1, navigate from page1 to page 2 with hyperlink <a href="dir2/page2.html"> and then navigate from page2 to page1 with hyperlink <a href="../page1.html">, the page navigation logic will look in DOM for a page with data-url attribute "dir2/../page1.html", which it of course will not find and so a duplicate page will be loaded into DOM. Using data-url attribute in page div will not help since the value that is looked for will depend on the location of the page where the link is.