From 2acccde6416ea6808cc914815dc26a72780ee766 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Thu, 13 Jun 2019 19:19:31 -0700 Subject: [PATCH] Use correct path for skin --- experiments/modern/src/App.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/experiments/modern/src/App.js b/experiments/modern/src/App.js index 109c88b5..ae8ca1f2 100644 --- a/experiments/modern/src/App.js +++ b/experiments/modern/src/App.js @@ -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");