summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-07-30 14:46:11 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-07-30 14:46:11 +0900
commit1ba1a7aa40797531cf699e3ac27bdf9d4766d50e (patch)
tree8b255151523927be584d129156b5df1001457321 /src/client
parentRevert "Fix bug" (diff)
downloadmisskey-1ba1a7aa40797531cf699e3ac27bdf9d4766d50e.tar.gz
misskey-1ba1a7aa40797531cf699e3ac27bdf9d4766d50e.tar.bz2
misskey-1ba1a7aa40797531cf699e3ac27bdf9d4766d50e.zip
Fix bug
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/desktop/views/pages/favorites.vue2
-rw-r--r--src/client/app/mobile/views/pages/favorites.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/pages/favorites.vue b/src/client/app/desktop/views/pages/favorites.vue
index 8adb9412f2..d3bb70f037 100644
--- a/src/client/app/desktop/views/pages/favorites.vue
+++ b/src/client/app/desktop/views/pages/favorites.vue
@@ -48,7 +48,7 @@ export default Vue.extend({
this.moreFetching = true;
(this as any).api('i/favorites', {
limit: 11,
- maxId: this.favorites[this.favorites.length - 1].id
+ untilId: this.favorites[this.favorites.length - 1].id
}).then(favorites => {
if (favorites.length == 11) {
this.existMore = true;
diff --git a/src/client/app/mobile/views/pages/favorites.vue b/src/client/app/mobile/views/pages/favorites.vue
index c4edd9d970..1cccf169b0 100644
--- a/src/client/app/mobile/views/pages/favorites.vue
+++ b/src/client/app/mobile/views/pages/favorites.vue
@@ -53,7 +53,7 @@ export default Vue.extend({
this.moreFetching = true;
(this as any).api('i/favorites', {
limit: 11,
- maxId: this.favorites[this.favorites.length - 1].id
+ untilId: this.favorites[this.favorites.length - 1].id
}).then(favorites => {
if (favorites.length == 11) {
this.existMore = true;