Skip to content
Snippets Groups Projects
Commit fceb0fa7 authored by syuilo's avatar syuilo
Browse files

[Clikinet] Fix bug

parent fd4770cf
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@
});
this.more = () => {
this.api('posts/timeline', {
return this.api('posts/timeline', {
max_id: this.refs.timeline.tail().id
});
};
......
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment