Skip to content

Commit

Permalink
feat: Fully enable coreCrypto (#14756)
Browse files Browse the repository at this point in the history
  • Loading branch information
atomrc committed Feb 27, 2023
1 parent 12a0412 commit 9435072
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/script/service/CoreSingleton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import {container, singleton} from 'tsyringe';

import {Account} from '@wireapp/core';

import {getStorage} from 'Util/localStorage';
import {isTemporaryClientAndNonPersistent, supportsCoreCryptoProteus, supportsMLS} from 'Util/util';

import {APIClient} from './APIClientSingleton';
Expand Down Expand Up @@ -73,7 +72,7 @@ export class Core extends Account {
*/
systemCrypto: window.systemCrypto,

useCoreCrypto: getStorage()?.getItem('useCoreCrypto') === '1',
useCoreCrypto: true,
},
nbPrekeys: 100,
});
Expand Down

0 comments on commit 9435072

Please sign in to comment.