mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
Use correct path for skin
This commit is contained in:
parent
3da45dafa5
commit
aaa59d7f97
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue