[Clikinet] Fix bug

This commit is contained in:
syuilo 2017-02-22 23:02:41 +09:00
parent fd4770cf92
commit fceb0fa717
3 changed files with 3 additions and 3 deletions

View file

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

View file

@ -26,7 +26,7 @@
this.more = () => {
this.offset += this.max;
this.api('posts/search', {
return this.api('posts/search', {
query: this.query,
max: this.max,
offset: this.offset

View file

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