Contribution Date
Technology
Contribution Project
Contribution Details
This patch is not working in Drupal 9.1.0 because in the RecentlyReadRelationship.php the following line of code is using the bundle column but the table actually has the type column. So I request to open the issue again so that the patch can updated and tested.
Code in the patch
$this->query->addWhere('recently_read', "$basetable.bundle", array_filter(array_values($this->options['bundles'])), "IN");
Actual code should be
$this->query->addWhere('recently_read', "$basetable.type", array_filter(array_values($this->options['bundles'])), "IN");
Contribution Issue Link
Files count
0
Patches count
0