From 190c8fd29f5f4b64253aa34b318a93d8c50e9239 Mon Sep 17 00:00:00 2001 From: Faey Umbrea <1144986+FaeyUmbrea@users.noreply.github.com> Date: Tue, 27 Sep 2022 07:32:44 +0200 Subject: [PATCH] Accidentally broke the Filepicker patches --- scripts/module.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/module.js b/scripts/module.js index b722720..35b1ccf 100644 --- a/scripts/module.js +++ b/scripts/module.js @@ -109,7 +109,10 @@ class S3Utils { else if(game.settings.get(this.ID, this.SETTINGS.CUSTOM_STYLE)){ uri = game.data.files.s3.endpoint.href + "/" + filepath; } - return url; + else { + uri = url; + } + return uri; } }