Fix list load-more is not working

This commit is contained in:
mei23 2018-05-09 04:56:07 +09:00
parent 4116b9eaf2
commit 107d9fd2c8
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ export default Vue.extend({
more() {
this.moreFetching = true;
(this as any).api('notes/list-timeline', {
(this as any).api('notes/user-list-timeline', {
listId: this.list.id,
limit: fetchLimit + 1,
untilId: (this.$refs.timeline as any).tail().id,

View file

@ -62,7 +62,7 @@ export default Vue.extend({
more() {
this.moreFetching = true;
(this as any).api('notes/list-timeline', {
(this as any).api('notes/user-list-timeline', {
listId: this.list.id,
limit: fetchLimit + 1,
untilId: (this.$refs.timeline as any).tail().id,