Fix incorrect check for private read receipt support (#12348)
Signed-off-by: Tulir Asokan <tulir@maunium.net>
This commit is contained in:
parent
3c6fd58628
commit
f765a44b46
1 changed files with 1 additions and 1 deletions
|
@ -1045,7 +1045,7 @@ class TimelinePanel extends React.Component<IProps, IState> {
|
|||
}
|
||||
|
||||
if (
|
||||
!(await client.doesServerSupportUnstableFeature("org.matrix.msc2285.stable")) ||
|
||||
!(await client.doesServerSupportUnstableFeature("org.matrix.msc2285.stable")) &&
|
||||
!(await client.isVersionSupported("v1.4"))
|
||||
) {
|
||||
logger.warn(
|
||||
|
|
Loading…
Reference in a new issue