From 5dcbe3f73f3a6750d17c5ab81f1ee988c439c5d5 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Mon, 29 Apr 2024 20:15:19 +0200 Subject: [PATCH] update for new VSA again --- editor/visualizers/effects/VSAEffect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/visualizers/effects/VSAEffect.js b/editor/visualizers/effects/VSAEffect.js index ff45736..2677e76 100644 --- a/editor/visualizers/effects/VSAEffect.js +++ b/editor/visualizers/effects/VSAEffect.js @@ -306,7 +306,7 @@ export default class VSAEffect { this.pendingUrl = undefined; this.compiling = true; const mungedUrl = url.includes('vertexshaderart.com') - ? `${url.replace('//www.', '//')}/art.json` + ? `${url}/art.json` : url; const req = await fetch(mungedUrl); const vsa = await req.json();