Il pulsante Approva nel profilo utente non funziona

Il tuo “anche io” è molto utile come conferma che il fatto che il mio utente sia stato anonimizzato non è la causa di questo bug.

Data Explorer indica che l’utente è revisionabile dal moderatore

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
1 Mi Piace