We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does someone experience this error when enabling E2E ?
CompileError: WebAssembly.instantiate(): expected magic word 00 61 73 6d, found 3c 21 44 4f @+0
Client parameters : const client = sdk.createClient({ baseUrl: "https://awsmatrixx.ml", accessToken: UserData.loginData.access_token, deviceId : UserData.loginData.device_id, userId : UserData.loginData.user_id, timelineSupport: true, sessionStore: new sdk.WebStorageSessionStore(window.localStorage), cryptoStore: new sdk.MemoryCryptoStore() });
const client = sdk.createClient({ baseUrl: "https://awsmatrixx.ml", accessToken: UserData.loginData.access_token, deviceId : UserData.loginData.device_id, userId : UserData.loginData.user_id, timelineSupport: true, sessionStore: new sdk.WebStorageSessionStore(window.localStorage), cryptoStore: new sdk.MemoryCryptoStore() });
And start client by this : client .initCrypto() .then(async () => await client.startClient({ initialSyncLimit: 1 })) .catch((err) => { console.error('err', err); });
client .initCrypto() .then(async () => await client.startClient({ initialSyncLimit: 1 })) .catch((err) => { console.error('err', err); });
The text was updated successfully, but these errors were encountered:
@dlwlrma00 WebAssembly/spec#1031 that looks to be an issue with the way the files are hosted
Sorry, something went wrong.
Have same issue when trying to activate E2E in matrix client in cra. Anyone found solution?
No branches or pull requests
Does someone experience this error when enabling E2E ?
CompileError: WebAssembly.instantiate(): expected magic word 00 61 73 6d, found 3c 21 44 4f @+0
Client parameters :
const client = sdk.createClient({ baseUrl: "https://awsmatrixx.ml", accessToken: UserData.loginData.access_token, deviceId : UserData.loginData.device_id, userId : UserData.loginData.user_id, timelineSupport: true, sessionStore: new sdk.WebStorageSessionStore(window.localStorage), cryptoStore: new sdk.MemoryCryptoStore() });
And start client by this :
client .initCrypto() .then(async () => await client.startClient({ initialSyncLimit: 1 })) .catch((err) => { console.error('err', err); });
The text was updated successfully, but these errors were encountered: