remove unnecessary if statement

This commit is contained in:
notfire 2025-03-30 14:39:03 -04:00
parent 56d46e4058
commit a2b28f677d
Signed by: notfire
GPG key ID: 3AFDACAAB4E56B16

View file

@ -116,9 +116,7 @@ const Notification = {
filtered (emoji) {
var isFiltered = false
if (emoji.match(/.*:.*/)) {
emoji = emoji.replaceAll(":", "")
}
emoji = emoji.replaceAll(":", "")
var reactionsFilterItems = this.$store.getters.mergedConfig.reactionsFilterItems.split("\n")