Improve SQL-Queries / fixed "fetch_parents" setting

This commit is contained in:
Michael 2022-08-08 20:00:21 +00:00
parent bbbbf8fd6b
commit 548b7f43a5
4 changed files with 8 additions and 8 deletions

View file

@ -345,7 +345,7 @@ class Processor
return [];
}
if (!in_array(0, $activity['receiver']) && !DI::config()->get('system', 'fetch_parents')) {
if (!in_array(0, $activity['receiver']) || !DI::config()->get('system', 'fetch_parents')) {
$fetch_parents = false;
}