AddonsLab
Well-known member
- Affected version
- 2.0.x, 2.1.x
Hello,
The error mentioned above can be seen when
Please let us know if you think this is indeed a bug. For now, we will extend the method to correct session entry for our product not to give the error.
Thank you!
The error mentioned above can be seen when
\XF\Repository\ApprovalQueue::rebuildUnapprovedCounts
method is called to populate unapproved post count in the session. We could not reproduce this by built-in XenForo actions, but it happens in our Guest Posting product, and reviewing the code the reason seems to be from the method mentioned. If unapprovedCounts
key is empty it is being populated with the cache containing keys total
and lastModified
. These are the expected keys in unapprovedCounts
registry entry but are invalid for $session->unapprovedCounts
. It should have lastBuilt
key instead of lastModified
, as can be seen in App.php on line 318.Please let us know if you think this is indeed a bug. For now, we will extend the method to correct session entry for our product not to give the error.
Thank you!