Your “me too” is very helpful as a confirmation that the fact that my user has been anonymized is not the reason for this bug.
Data explorer says the user is reviewable by moderator
| user_id | id | type | target_id | target_type | reviewable_by_moderator |
|---|---|---|---|---|---|
| anon84265489 | 264 | ReviewableUser | 123 | User | true |
query
SELECT
u.id AS user_id,
r.id,
r.type,
r.target_id,
r.target_type,
r.reviewable_by_moderator
FROM reviewables r
JOIN users u
ON r.target_id = u.id
WHERE u.approved = false
AND u.active = true