From 997d7d95a1b77e95b1f73e7581192b7d7c4d8409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20van=20Asperen?= Date: Thu, 9 May 2024 00:37:38 +0200 Subject: [PATCH] Fix issue where local_art couldn't be used for card art --- js/creator-23.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/creator-23.js b/js/creator-23.js index d47d0ba9..7d4d9473 100644 --- a/js/creator-23.js +++ b/js/creator-23.js @@ -4053,6 +4053,9 @@ async function addTextbox(textboxType) { } //ART TAB function uploadArt(imageSource, otherParams) { + if (!imageSource.includes('http')) { + imageSource = '/local_art/' + imageSource; + } art.src = imageSource; if (otherParams && otherParams == 'autoFit') { art.onload = function() {