don't return promise here, not used

This commit is contained in:
Bruno Windels 2020-09-08 18:30:45 +02:00
parent 4ca5ff9b9f
commit da4b710e49

View file

@ -36,7 +36,7 @@ export class DeviceIdentityStore {
set(deviceIdentity) {
deviceIdentity.key = encodeKey(deviceIdentity.userId, deviceIdentity.deviceId);
return this._store.put(deviceIdentity);
this._store.put(deviceIdentity);
}
getByCurve25519Key(curve25519Key) {