Skip to content

Commit e72e4ba

Browse files
committed
fix: prevent error on initial navigation to //invalid
1 parent 5031dc2 commit e72e4ba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/history/html5.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import { stripBase } from '../location'
1919

2020
type PopStateListener = (this: Window, ev: PopStateEvent) => any
2121

22+
let createBaseLocation = () => location.protocol + '//' + location.host
23+
2224
interface StateEntry extends HistoryState {
2325
back: HistoryLocationNormalized | null
2426
current: HistoryLocationNormalized
@@ -200,7 +202,7 @@ function useHistoryStateNavigation(base: string) {
200202
state: StateEntry,
201203
replace: boolean
202204
): void {
203-
const url = base + to.fullPath
205+
const url = createBaseLocation() + base + to.fullPath
204206
try {
205207
// BROWSER QUIRK
206208
// NOTE: Safari throws a SecurityError when calling this function 100 times in 30 seconds

0 commit comments

Comments
 (0)