- Issue created by @dahousecat
- 🇮🇳India divyansh.gupta Jaipur
Yes i agree with the solution that $key is set before entity load in Selective::getOids, since patches are deprecated created an MR.
Please review.
If the key is null due to some bad data then there is a fatal exception.
Instead of
$entity = $entityTypeStorage->load($key);
do
$entity = $key ? $entityTypeStorage->load($key) : NULL;
Active
2.0
Code
Yes i agree with the solution that $key is set before entity load in Selective::getOids, since patches are deprecated created an MR.
Please review.