We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6989579 commit d6f803cCopy full SHA for d6f803c
source/normalized-url.ts
@@ -8,7 +8,11 @@ export class NormalizedUrl extends ParsedUrl {
8
9
static revive(key: string | undefined, value: string | UrlData) {
10
if (key === undefined && typeof value !== 'string') {
11
- return new NormalizedUrl(value);
+ const n = new NormalizedUrl(value);
12
+ if ('original' in value) {
13
+ n.original = value.original as string;
14
+ }
15
+ return n;
16
}
17
18
return value;
0 commit comments