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

master
andryyy 2020-02-26 13:58:41 +01:00
parent a1156c38fc
commit dd0c1438de
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF
1 changed files with 1 additions and 1 deletions

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');