5196cb02216c54a772451f528536a2a09131af63
getRecentEdits SELECT ... m.content AS new_content returned the message's ORIGINAL content (never updated on edit) instead of the post-edit content. messages.content stores the original body; the current/last-edited body lives in messages.edited_content. So before===after in the Message Edits diff. Fix: COALESCE(m.edited_content, m.content) AS new_content so 'After' shows the edited text and diffs against the captured before-content are meaningful.
Description
Bete Discord moderation watcher
27 MiB
Languages
TypeScript
96.5%
CSS
1.2%
Nix
0.8%
Shell
0.7%
PLpgSQL
0.5%
Other
0.3%