diff options
Diffstat (limited to 'src/web/app/desktop/script.ts')
| -rw-r--r-- | src/web/app/desktop/script.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/desktop/script.ts b/src/web/app/desktop/script.ts index 2362613cdc..f2bcc6f8a6 100644 --- a/src/web/app/desktop/script.ts +++ b/src/web/app/desktop/script.ts @@ -83,8 +83,8 @@ init(async (launch) => { { path: '/search', component: MkSearch }, { path: '/othello', component: MkOthello }, { path: '/othello/:game', component: MkOthello }, - { path: '/:user', component: MkUser }, - { path: '/:user/:post', component: MkPost } + { path: '/@:user', component: MkUser }, + { path: '/@:user/:post', component: MkPost } ]); }, true); |