Bug Fixes:

- Closes #42
- Closes #44
- Closes #45
This commit is contained in:
Shiny Nematoda 2022-10-08 11:02:28 +00:00
parent 5449523f2a
commit 7905394b26
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
7 changed files with 143 additions and 134 deletions

View file

@ -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;