diff --git a/src/ClientContext.tsx b/src/ClientContext.tsx index bedcbc6..fa83f5d 100644 --- a/src/ClientContext.tsx +++ b/src/ClientContext.tsx @@ -30,7 +30,11 @@ import { logger } from "matrix-js-sdk/src/logger"; import { useTranslation } from "react-i18next"; import { ErrorView } from "./FullScreenView"; -import { initClient, CryptoStoreIntegrityError } from "./matrix-utils"; +import { + initClient, + CryptoStoreIntegrityError, + fallbackICEServerAllowed, +} from "./matrix-utils"; import { widget } from "./widget"; import { PosthogAnalytics, RegistrationType } from "./PosthogAnalytics"; import { translatedError } from "./TranslatedError"; @@ -139,6 +143,7 @@ export const ClientProvider: FC = ({ children }) => { accessToken: access_token, userId: user_id, deviceId: device_id, + fallbackICEServerAllowed: fallbackICEServerAllowed, }, true ), @@ -154,6 +159,7 @@ export const ClientProvider: FC = ({ children }) => { accessToken: access_token, userId: user_id, deviceId: device_id, + fallbackICEServerAllowed: fallbackICEServerAllowed, }, false // Don't need the crypto store just to log out );