From d57d30445bbd20882b61d824ca5b58c2dfe9fb61 Mon Sep 17 00:00:00 2001 From: Kyle <41976328+ImKyle4815@users.noreply.github.com> Date: Wed, 13 Oct 2021 12:17:51 -0700 Subject: [PATCH] cors proxy server hotfix --- js/creator-23.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/creator-23.js b/js/creator-23.js index e2166951..a9bcba8f 100644 --- a/js/creator-23.js +++ b/js/creator-23.js @@ -1922,7 +1922,9 @@ function drawNewGuidelines() { function imageURL(url, destination, otherParams) { var imageurl = url; if (params.get('noproxy') != '') { - imageurl = 'https://cors.bridged.cc/' + url; + //CORS PROXY LINKS + //Previously: https://cors.bridged.cc/ + imageurl = 'https://api.codetabs.com/v1/proxy?quest=' + url; } destination(imageurl, otherParams); }