[Web] Allow empty bcc when saving quarantine settings, fixes #3363

This commit is contained in:
andryyy
2020-02-26 13:58:41 +01:00
parent a1156c38fc
commit dd0c1438de

View File

@@ -103,7 +103,7 @@ $(document).ready(function() {
$(this).removeClass('inputMissingAttr');
}
}
if ($(this).attr("type") == 'email') {
if ($(this).val() && $(this).attr("type") == 'email') {
if (!validateEmail($(this).val())) {
invalid = true;
$(this).addClass('inputMissingAttr');