chore(client): fix routing

This commit is contained in:
syuilo 2022-07-13 18:28:04 +09:00
parent ad970dffda
commit c771135fd8
1 changed files with 3 additions and 1 deletions

View File

@ -128,7 +128,9 @@ export class Router extends EventEmitter<{
props.set(p.name, safeURIDecode(parts[0].substring(p.startsWith.length)));
parts.shift();
} else {
props.set(p.name, safeURIDecode(parts[0]));
if (parts[0]) {
props.set(p.name, safeURIDecode(parts[0]));
}
parts.shift();
}
}