1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-23 23:00:51 +00:00

Revert "custom.js: prevent null.trim error resolves #5000"

This reverts commit a61991fcdb.
This commit is contained in:
Garfield69 2019-04-01 12:49:03 +13:00
parent 4ea6ce6cc2
commit f0245900e4

View file

@ -1229,7 +1229,7 @@ function bindUIButtons() {
}
function proxyWarning(input) {
if (input && input.trim() != "")
if (input.trim() != "")
$('#proxy-warning').show();
else
$('#proxy-warning').hide();