mirror of https://github.com/vector-im/riot-web
MatrixChat: Stop the crawler function and delete the index when logging out.
parent
9ce478cb0e
commit
b23ba5f881
|
@ -1221,7 +1221,15 @@ export default createReactClass({
|
||||||
/**
|
/**
|
||||||
* Called when the session is logged out
|
* Called when the session is logged out
|
||||||
*/
|
*/
|
||||||
_onLoggedOut: function() {
|
_onLoggedOut: async function() {
|
||||||
|
const platform = PlatformPeg.get();
|
||||||
|
|
||||||
|
if (platform.supportsEventIndexing()) {
|
||||||
|
console.log("Seshat: Deleting event index.");
|
||||||
|
this.crawlerRef.cancel();
|
||||||
|
await platform.deleteEventIndex();
|
||||||
|
}
|
||||||
|
|
||||||
this.notifyNewScreen('login');
|
this.notifyNewScreen('login');
|
||||||
this.setStateForNewView({
|
this.setStateForNewView({
|
||||||
view: VIEWS.LOGIN,
|
view: VIEWS.LOGIN,
|
||||||
|
|
Loading…
Reference in New Issue