mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
parent
5449523f2a
commit
7905394b26
7 changed files with 143 additions and 134 deletions
|
@ -31,8 +31,10 @@ export const useData = defineStore('data', () => {
|
|||
|
||||
state.art = json.thumbnailUrl;
|
||||
state.description = json.description;
|
||||
state.title = json.title;
|
||||
state.artist = json.uploader.replace(' - Topic', '');
|
||||
state.title = json.title.replaceAll('&', '&');
|
||||
state.artist = json.uploader
|
||||
.replace(' - Topic', '')
|
||||
.replaceAll('&', '&');
|
||||
state.artistUrl = json.uploaderUrl;
|
||||
player.state.duration = json.duration;
|
||||
player.state.hls = json.hls;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue