Skip to content

Commit d6f803c

Browse files
committed
Reviving shouldn't toss the original value
1 parent 6989579 commit d6f803c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

source/normalized-url.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ export class NormalizedUrl extends ParsedUrl {
88

99
static revive(key: string | undefined, value: string | UrlData) {
1010
if (key === undefined && typeof value !== 'string') {
11-
return new NormalizedUrl(value);
11+
const n = new NormalizedUrl(value);
12+
if ('original' in value) {
13+
n.original = value.original as string;
14+
}
15+
return n;
1216
}
1317

1418
return value;

0 commit comments

Comments
 (0)