Fix auth media check for dendrite (#1952)
This commit is contained in:
parent
c75e903619
commit
4923b17ad6
1 changed files with 3 additions and 2 deletions
|
@ -1,10 +1,11 @@
|
||||||
import { useSpecVersions } from './useSpecVersions';
|
import { useSpecVersions } from './useSpecVersions';
|
||||||
|
|
||||||
export const useMediaAuthentication = (): boolean => {
|
export const useMediaAuthentication = (): boolean => {
|
||||||
const { versions } = useSpecVersions();
|
const { versions, unstable_features: unstableFeatures } = useSpecVersions();
|
||||||
|
|
||||||
// Media authentication is introduced in spec version 1.11
|
// Media authentication is introduced in spec version 1.11
|
||||||
const authenticatedMedia = versions.includes('v1.11');
|
const authenticatedMedia =
|
||||||
|
unstableFeatures?.['org.matrix.msc3916.stable'] || versions.includes('v1.11');
|
||||||
|
|
||||||
return authenticatedMedia;
|
return authenticatedMedia;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue