mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
Don't show polls in timeline if polls are disabled (#7332)
This commit is contained in:
parent
5554d7fdc1
commit
c21895b5b4
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user