Fix URL encoding, fix download m4b cover art

This commit is contained in:
advplyr 2021-10-06 13:00:12 -05:00
parent 19dcb6173e
commit 75aede914f
7 changed files with 19 additions and 14 deletions

View file

@ -75,7 +75,7 @@ export default {
return {
...track,
relativePath: trackPath.replace(audiobookPath, '')
relativePath: trackPath.replace(audiobookPath, '').replace(/%/g, '%25').replace(/#/g, '%23')
}
})
},