diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-09 22:48:45 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-09 22:48:45 +0900 |
| commit | 17b92c9db236317dad42f02730fc24a82a9bc968 (patch) | |
| tree | ff3822cc285d053870e00b739f50be1546e73c5d /src | |
| parent | fix(package): update @types/webpack to version 4.4.15 (#2868) (diff) | |
| download | misskey-17b92c9db236317dad42f02730fc24a82a9bc968.tar.gz misskey-17b92c9db236317dad42f02730fc24a82a9bc968.tar.bz2 misskey-17b92c9db236317dad42f02730fc24a82a9bc968.zip | |
Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/views/components/notifications.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/mobile/views/components/notifications.vue b/src/client/app/mobile/views/components/notifications.vue index 1cdcad1e4a..d9ea2aea09 100644 --- a/src/client/app/mobile/views/components/notifications.vue +++ b/src/client/app/mobile/views/components/notifications.vue @@ -77,6 +77,8 @@ export default Vue.extend({ methods: { fetchMoreNotifications() { + if (this.fetchingMoreNotifications) return; + this.fetchingMoreNotifications = true; const max = 30; |