Update src/client/app/router.ts

pull/3405/head
Divyansh Singh 2 years ago committed by GitHub
parent f0cbabdf78
commit 3d90e898b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -329,7 +329,7 @@ function shouldHotReload(payload: PageDataPayload): boolean {
} }
function updateHistory(href: string) { function updateHistory(href: string) {
if (inBrowser && href !== location.href) { if (inBrowser && normalizeHref(href) !== normalizeHref(location.href)) {
// save scroll position before changing url // save scroll position before changing url
history.replaceState({ scrollPosition: window.scrollY }, document.title) history.replaceState({ scrollPosition: window.scrollY }, document.title)
history.pushState(null, '', href) history.pushState(null, '', href)

Loading…
Cancel
Save