[COMPONENT][Notification] Always pre-add Actor subscribers when notifying
This commit is contained in:
parent
03f449035a
commit
e63c310d70
@ -81,6 +81,9 @@ class Notification extends Component
|
|||||||
{
|
{
|
||||||
// Ensure targets are all actor objects and unique
|
// Ensure targets are all actor objects and unique
|
||||||
$effective_targets = [];
|
$effective_targets = [];
|
||||||
|
foreach ($sender->getSubscribers() as $subscriber) {
|
||||||
|
$effective_targets[$subscriber->getId()] = $subscriber;
|
||||||
|
}
|
||||||
foreach ($targets as $target) {
|
foreach ($targets as $target) {
|
||||||
if (\is_int($target)) {
|
if (\is_int($target)) {
|
||||||
$target_id = $target;
|
$target_id = $target;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user