Hack for DistroKid Editing Non-English Releases
We've reported for years to @DistroKid that their Edit page incorrectly disallows English letters in non-English releases. They still haven't fixed it, so I came up with the below hack, which you can paste in the browser console (right-click > inspect > console):

Quote
window.containsEnglishChars = function(str) {
console.log('Bypassing English character check for:', str);
return false;
};
window.skipClientSide = true;
console.log('Validation bypass applied. You can now try to submit the form.');
console.log('Bypassing English character check for:', str);
return false;
};
window.skipClientSide = true;
console.log('Validation bypass applied. You can now try to submit the form.');

4 unique view(s)







