Don't show polls in timeline if polls are disabled (#7332)

pull/21833/head
Andy Balaam 2021-12-10 13:28:21 +00:00 committed by GitHub
parent 5554d7fdc1
commit c21895b5b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -172,6 +172,13 @@ export function getHandlerTile(ev) {
}
}
if (
POLL_START_EVENT_TYPE.matches(type) &&
!SettingsStore.getValue("feature_polls")
) {
return undefined;
}
if (ev.isState()) {
if (stateEventSingular.has(type) && ev.getStateKey() !== "") return undefined;
return stateEventTileTypes[type];