mirror of
https://github.com/captbaritone/webamp
synced 2024-11-23 00:34:42 +00:00
Use correct path for skin
This commit is contained in:
parent
96946e58e3
commit
2acccde641
@ -20,7 +20,9 @@ function promisify(func) {
|
||||
}
|
||||
|
||||
async function getSkin() {
|
||||
const resp = await fetch(process.env.PUBLIC_URL + "/CornerAmp_Redux.wal");
|
||||
const resp = await fetch(
|
||||
process.env.PUBLIC_URL + "/skins/CornerAmp_Redux.wal"
|
||||
);
|
||||
const blob = await resp.blob();
|
||||
const zip = await JSZip.loadAsync(blob);
|
||||
const player = zip.file("xml/player-elements.xml");
|
||||
|
Loading…
Reference in New Issue
Block a user