cors proxy server hotfix

This commit is contained in:
Kyle
2021-10-13 12:17:51 -07:00
parent a19e5ea9fc
commit d57d30445b

View File

@@ -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);
}