Implement DeArrow support everywhere.

Closes #2575
This commit is contained in:
Kavin
2023-07-21 21:07:53 +01:00
parent f8e4c70ea0
commit 9539d51126
6 changed files with 27 additions and 41 deletions

View File

@@ -116,6 +116,7 @@ export default {
.then(() => {
this.updateTitle();
this.updateWatched(this.playlist.relatedStreams);
this.fetchDeArrowContent(this.playlist.relatedStreams);
});
},
async updateTitle() {
@@ -132,6 +133,7 @@ export default {
this.playlist.nextpage = json.nextpage;
this.loading = false;
json.relatedStreams.map(stream => this.playlist.relatedStreams.push(stream));
this.fetchDeArrowContent(this.playlist.relatedStreams);
});
}
},