mirror of https://github.com/vector-im/riot-web
Merge pull request #5069 from matrix-org/dbkr/fix_soft_logout_warning
Fix key backup warning on soft logout pagepull/21833/head
commit
d1bf333cce
|
@ -72,7 +72,7 @@ export default class SoftLogout extends React.Component {
|
||||||
|
|
||||||
this._initLogin();
|
this._initLogin();
|
||||||
|
|
||||||
MatrixClientPeg.get().flagAllGroupSessionsForBackup().then(remaining => {
|
MatrixClientPeg.get().countSessionsNeedingBackup().then(remaining => {
|
||||||
this.setState({keyBackupNeeded: remaining > 0});
|
this.setState({keyBackupNeeded: remaining > 0});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue