You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"query": "\n select title, artist \n from (play_log\n join metadata on \n play_log.metadata_id = metadata.id)\n left join track_reaction on play_log.id = track_reaction.play_log_id\n where guild_id = $1 and (track_reaction is null or track_reaction.dislikes <= $2)\n order by play_log.created_at desc limit $3\n ",