mirror of https://github.com/vector-im/riot-web
Fix incorrect check for private read receipt support (#12348)
Signed-off-by: Tulir Asokan <tulir@maunium.net>pull/28217/head
parent
3c6fd58628
commit
f765a44b46
|
@ -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 New Issue