diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-07 13:03:46 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-07 13:03:46 +0900 |
| commit | f02125dd4755df1120eae0469a8344f1fbdabcf2 (patch) | |
| tree | 89272fb5445d1429c51e5dfe407002e2e0801968 /src/client/app/mobile | |
| parent | Fix (diff) | |
| download | misskey-f02125dd4755df1120eae0469a8344f1fbdabcf2.tar.gz misskey-f02125dd4755df1120eae0469a8344f1fbdabcf2.tar.bz2 misskey-f02125dd4755df1120eae0469a8344f1fbdabcf2.zip | |
Resolve #4437
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/components/note-detail.vue | 4 | ||||
| -rw-r--r-- | src/client/app/mobile/views/components/note.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index b6f9dc4434..e14e1beff8 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -135,9 +135,9 @@ export default Vue.extend({ methods: { fetchReplies() { if (this.compact) return; - this.$root.api('notes/replies', { + this.$root.api('notes/children', { noteId: this.appearNote.id, - limit: 8 + limit: 30 }).then(replies => { this.replies = replies; }); diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index de556f170c..c207eb10d7 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -115,9 +115,9 @@ export default Vue.extend({ created() { if (this.detail) { - this.$root.api('notes/replies', { + this.$root.api('notes/children', { noteId: this.appearNote.id, - limit: 8 + limit: 30 }).then(replies => { this.replies = replies; }); |