diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-19 06:04:59 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-19 06:04:59 +0900 |
| commit | 37daff6d619765c11cc497dae349a9a751b5552e (patch) | |
| tree | 502b13ad8b1c589f82b62a20133fd080e064c790 /src/client/app/mobile/views/pages/user | |
| parent | Create PULL_REQUEST_TEMPLATE.md (#3552) (diff) | |
| download | misskey-37daff6d619765c11cc497dae349a9a751b5552e.tar.gz misskey-37daff6d619765c11cc497dae349a9a751b5552e.tar.bz2 misskey-37daff6d619765c11cc497dae349a9a751b5552e.zip | |
[Client] Fix #2764
Diffstat (limited to 'src/client/app/mobile/views/pages/user')
| -rw-r--r-- | src/client/app/mobile/views/pages/user/home.photos.vue | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/pages/user/home.photos.vue b/src/client/app/mobile/views/pages/user/home.photos.vue index 4fb5b90ff2..bbd9c79631 100644 --- a/src/client/app/mobile/views/pages/user/home.photos.vue +++ b/src/client/app/mobile/views/pages/user/home.photos.vue @@ -26,9 +26,14 @@ export default Vue.extend({ }; }, mounted() { + const image = [ + 'image/jpeg', + 'image/png', + 'image/gif' + ]; this.$root.api('users/notes', { userId: this.user.id, - withFiles: true, + fileType: image, limit: 6, untilDate: new Date().getTime() + 1000 * 86400 * 365 }).then(notes => { |