Skip to content

Commit

Permalink
include filtering display for outdated 'r9kbeta'
Browse files Browse the repository at this point in the history
  • Loading branch information
phroggster committed Dec 31, 2024
1 parent a3fdbba commit 86275d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/events/filters/builtin/twitch/chat-mode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const filter: EventFilter = {
},
getSelectedValueDisplay: async (filterSettings) => {
return (await filter.presetValues())
.find(pv => pv.value === filterSettings.value)?.display ?? "[Not Set]";
.find(pv => pv.value === filterSettings.value || (filterSettings.value === "r9kbeta" && pv.value === "uniquechat"))?.display ?? "[Not Set]";
},
predicate: async (filterSettings, eventData) => {

Expand Down

0 comments on commit 86275d6

Please sign in to comment.