fix for collections not pulling next
This commit is contained in:
parent
a5d31ff2f9
commit
b335edfbed
1 changed files with 2 additions and 2 deletions
|
@ -81,9 +81,9 @@
|
|||
this.triggerEnabled = true;
|
||||
});
|
||||
if(typeof this.data.next == "function") {
|
||||
this.data.next().then(data => next);
|
||||
this.data.next().then(data => nextFn(data));
|
||||
}else{
|
||||
this.api.v3.music(this.data.next).then(data => nextFn);
|
||||
this.api.v3.music(this.data.next).then(data => nextFn(data));
|
||||
}
|
||||
}else{
|
||||
console.log("No next page");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue