We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6227e6 commit 56b9cccCopy full SHA for 56b9ccc
src/Impact/Embodied/Engine.php
@@ -144,11 +144,8 @@ private static function hasModelData(CommonDBTM $item): bool
144
];
145
$types = Type::getImpactTypes();
146
foreach ($types as $key => $type) {
147
- $crit[] = [
148
- 'OR' => [
149
- ['NOT' => [$type => null]],
150
- $type . '_quality' => ['<>', AbstractTracked::DATA_QUALITY_UNSET_VALUE]
151
- ]
+ $crit['OR'][] = [
+ $type . '_quality' => ['<>', AbstractTracked::DATA_QUALITY_UNSET_VALUE]
152
153
}
154
$model = new $model_class();
0 commit comments