This commit is contained in:
syuilo
2017-12-21 02:20:02 +09:00
parent fb09710b62
commit c378e5fc94
24 changed files with 135 additions and 135 deletions

View File

@@ -430,7 +430,7 @@
this.api('drive/files', {
folder_id: this.folder ? this.folder.id : null,
limit: max + 1,
max_id: this.files[this.files.length - 1].id
until_id: this.files[this.files.length - 1].id
}).then(files => {
if (files.length == max + 1) {
this.moreFiles = true;

View File

@@ -47,7 +47,7 @@
this.more = () => {
return this.api('posts/timeline', {
max_id: this.refs.timeline.tail().id
until_id: this.refs.timeline.tail().id
});
};

View File

@@ -146,7 +146,7 @@
this.api('i/notifications', {
limit: max + 1,
max_id: this.notifications[this.notifications.length - 1].id
until_id: this.notifications[this.notifications.length - 1].id
}).then(notifications => {
if (notifications.length == max + 1) {
this.moreNotifications = true;

View File

@@ -26,7 +26,7 @@
return this.api('users/posts', {
user_id: this.user.id,
with_media: this.withMedia,
max_id: this.refs.timeline.tail().id
until_id: this.refs.timeline.tail().id
});
};
</script>