Skip to content

Commit 85bb7e1

Browse files
committed
fix: encode hash
1 parent 1761d78 commit 85bb7e1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/router.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
} from './errors'
3434
import { applyToParams, isBrowser } from './utils'
3535
import { useCallbacks } from './utils/callbacks'
36-
import { encodeParam, decode } from './encoding'
36+
import { encodeParam, decode, encodeHash } from './encoding'
3737
import {
3838
normalizeQuery,
3939
parseQuery as originalParseQuery,
@@ -244,6 +244,8 @@ export function createRouter({
244244
currentLocation
245245
)
246246

247+
const hash = encodeHash(location.hash || '')
248+
247249
// put back the unencoded params as given by the user (avoid the cost of decoding them)
248250
// TODO: normalize params if we accept numbers as raw values
249251
matchedRoute.params =
@@ -253,12 +255,15 @@ export function createRouter({
253255

254256
const fullPath = stringifyURL(stringifyQuery, {
255257
...location,
258+
hash,
256259
path: matchedRoute.path,
257260
})
258261

259262
return {
260263
fullPath,
261-
hash: location.hash || '',
264+
// keep the hash encoded so fullPath is effectively path + encodedQuery +
265+
// hash
266+
hash,
262267
query: normalizeQuery(location.query),
263268
...matchedRoute,
264269
redirectedFrom: undefined,

0 commit comments

Comments
 (0)