This commit is contained in:
@@ -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;
|
||||
|
@@ -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
|
||||
});
|
||||
};
|
||||
|
||||
|
@@ -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;
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user