Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6337 from matrix-org/dbkr/devicelistener_megolm_key
Browse files Browse the repository at this point in the history
Make DeviceListener also update on megolm key in SSSS
  • Loading branch information
dbkr authored Jul 8, 2021
2 parents 4978c27 + 197b6ae commit 013a811
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DeviceListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ export default class DeviceListener {
// which result in account data changes affecting checks below.
if (
ev.getType().startsWith('m.secret_storage.') ||
ev.getType().startsWith('m.cross_signing.')
ev.getType().startsWith('m.cross_signing.') ||
ev.getType() === 'm.megolm_backup.v1'
) {
this._recheck();
}
Expand Down

0 comments on commit 013a811

Please sign in to comment.