[various] enotify: empty out fields instead of using "abort" for addons #950

Merged
nupplaphil merged 1 commit from bug/8182_another_notification_bug into develop 2020-01-28 22:58:47 +01:00
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) { if ($found) {
$b['abort'] = true; // empty out the fields
$b = [];
} }
} }

View file

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