summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/script.ts
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2018-12-11 20:19:13 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2018-12-11 20:19:13 +0900
commit08142ead678c598b8500f563cc117bfa7faf5944 (patch)
tree38e36da1904b52385d5649db60958ef57a0f12d8 /src/client/app/desktop/script.ts
parentShow user fields (#3590) (diff)
downloadmisskey-08142ead678c598b8500f563cc117bfa7faf5944.tar.gz
misskey-08142ead678c598b8500f563cc117bfa7faf5944.tar.bz2
misskey-08142ead678c598b8500f563cc117bfa7faf5944.zip
Resolve #3581 (#3589)
* Update ja-JP.yml * Create 404.vue * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update 404.vue * Update meta.ts * Update instance.vue * Update update-meta.ts
Diffstat (limited to 'src/client/app/desktop/script.ts')
-rw-r--r--src/client/app/desktop/script.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app/desktop/script.ts b/src/client/app/desktop/script.ts
index dd4cad68c9..ebde75e3b4 100644
--- a/src/client/app/desktop/script.ts
+++ b/src/client/app/desktop/script.ts
@@ -28,6 +28,7 @@ import MkTag from './views/pages/tag.vue';
import MkReversi from './views/pages/games/reversi.vue';
import MkShare from './views/pages/share.vue';
import MkFollow from '../common/views/pages/follow.vue';
+import MkNotFound from '../common/views/pages/404.vue';
import Ctx from './views/components/context-menu.vue';
import PostFormWindow from './views/components/post-form-window.vue';
@@ -148,7 +149,8 @@ init(async (launch) => {
{ path: '/@:user/following', name: 'userFollowing', component: MkUserFollowingOrFollowers },
{ path: '/@:user/followers', name: 'userFollowers', component: MkUserFollowingOrFollowers },
{ path: '/notes/:note', name: 'note', component: MkNote },
- { path: '/authorize-follow', component: MkFollow }
+ { path: '/authorize-follow', component: MkFollow },
+ { path: '*', component: MkNotFound }
]
});