summaryrefslogtreecommitdiff
path: root/src/client/app/mobile
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-03-07 13:03:46 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-03-07 13:03:46 +0900
commitf02125dd4755df1120eae0469a8344f1fbdabcf2 (patch)
tree89272fb5445d1429c51e5dfe407002e2e0801968 /src/client/app/mobile
parentFix (diff)
downloadmisskey-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.vue4
-rw-r--r--src/client/app/mobile/views/components/note.vue4
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;
});