-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: bad word filtering not working #32810
Conversation
Signed-off-by: Abhinav Kumar <[email protected]>
Signed-off-by: Abhinav Kumar <[email protected]>
🦋 Changeset detectedLatest commit: 4cf9f4d The changes in this PR will be included in the next version bump. This PR includes changesets to release 32 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Looks like this PR is ready to merge! 🎉 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #32810 +/- ##
===========================================
- Coverage 55.54% 55.54% -0.01%
===========================================
Files 2634 2633 -1
Lines 57215 57184 -31
Branches 11849 11843 -6
===========================================
- Hits 31782 31762 -20
+ Misses 22742 22737 -5
+ Partials 2691 2685 -6
Flags with carried forward coverage won't be shown. Click here to find out more. |
Signed-off-by: Abhinav Kumar <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add some api tests?
Signed-off-by: Abhinav Kumar <[email protected]>
Signed-off-by: Abhinav Kumar <[email protected]>
Proposed changes (including videos or screenshots)
Fixes bad word filtering not working issue. If we look into the DB record, we'll see the message has been edited, but the UI still shows the word. The issue was identified to be due to displaying the value in the
md
property, and not themsg
property, and themd
is not edited to filter the bad words.This occurs due to bad word filter service running after the markdown parser.
Screen.Recording.2024-07-17.at.5.31.31.PM.mov
Issue(s)
Steps to test or reproduce
Further comments
SUP-624