diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-05-26 16:08:57 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-05-26 16:08:57 +0900 |
| commit | 8f175186bcd62d2a4372eef8147119ed2ccb0f66 (patch) | |
| tree | b64495f5c9c8327cbeef6c62cfdf23b5634722fa /src | |
| parent | :art: (diff) | |
| download | misskey-8f175186bcd62d2a4372eef8147119ed2ccb0f66.tar.gz misskey-8f175186bcd62d2a4372eef8147119ed2ccb0f66.tar.bz2 misskey-8f175186bcd62d2a4372eef8147119ed2ccb0f66.zip | |
Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/pages/notifications.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/pages/notifications.vue b/src/client/app/mobile/views/pages/notifications.vue index 2e98201caa..64cfa60da0 100644 --- a/src/client/app/mobile/views/pages/notifications.vue +++ b/src/client/app/mobile/views/pages/notifications.vue @@ -24,7 +24,7 @@ export default Vue.extend({ const ok = window.confirm('%i18n:@read-all%'); if (!ok) return; - (this as any).api('notifications/markAsRead_all'); + (this as any).api('notifications/mark_as_read_all'); }, onFetched() { Progress.done(); |