Merge pull request #950 from nupplaphil/bug/8182_another_notification_bug

[various] enotify: empty out fields instead of using "abort" for addons
pull/952/head
Hypolite Petovan 2020-01-28 16:58:47 -05:00 committed by GitHub
commit 30eb87e939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -108,7 +108,8 @@ function blockem_enotify_store(App $a, array &$b)
}
if ($found) {
$b['abort'] = true;
// empty out the fields
$b = [];
}
}

View File

@ -95,7 +95,8 @@ function superblock_enotify_store(&$a,&$b) {
}
}
if ($found) {
$b['abort'] = true;
// Empty out the fields
$b = [];
}
}