summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/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/mobile/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/mobile/script.ts')
-rw-r--r--src/client/app/mobile/script.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts
index 7fe3ab05d9..5dc39ad788 100644
--- a/src/client/app/mobile/script.ts
+++ b/src/client/app/mobile/script.ts
@@ -31,6 +31,7 @@ import MkReversi from './views/pages/games/reversi.vue';
import MkTag from './views/pages/tag.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 PostForm from './views/components/post-form-dialog.vue';
import FileChooser from './views/components/drive-file-chooser.vue';
@@ -138,7 +139,8 @@ init((launch) => {
{ path: '/@:user/followers', component: MkFollowers },
{ path: '/@:user/following', component: MkFollowing },
{ path: '/notes/:note', component: MkNote },
- { path: '/authorize-follow', component: MkFollow }
+ { path: '/authorize-follow', component: MkFollow },
+ { path: '*', component: MkNotFound }
]
});