From b4a388ed317a558322ad6f58e347b02cfd1a8fda Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 8 Oct 2017 12:16:01 -0700 Subject: [PATCH] Query string cache busting does not work --- js/config.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/js/config.js b/js/config.js index f2addef3..26a7a610 100644 --- a/js/config.js +++ b/js/config.js @@ -14,10 +14,7 @@ const or = (value, fallback) => (value === undefined ? fallback : value); const assetBase = process.env.NODE_ENV === "production" ? cdnUrl : ""; // Turn on the incomplete playlist window -export const skinUrl = or( - config.skinUrl, - `${assetBase}skins/base-2.91.wsz?v=1` -); +export const skinUrl = or(config.skinUrl, `${assetBase}skins/base-2.91.wsz`); export const audioUrl = or(config.audioUrl, `${assetBase}mp3/llama-2.91.mp3`); export const playlistEnabled = config.playlist || false; export const noMarquee = config.noMarquee || false;