From 7e424ce95b84cf000820a8d4af5027a9844e6233 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 8 Mar 2019 15:09:44 +0000 Subject: [PATCH] Fix call to stop() --- src/Lifecycle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lifecycle.js b/src/Lifecycle.js index e725e91044..6a113db418 100644 --- a/src/Lifecycle.js +++ b/src/Lifecycle.js @@ -485,7 +485,7 @@ function _clearStorage() { */ export function stopMatrixClient() { Notifier.stop(); - UserActivity.stop(); + UserActivity.sharedInstance().stop(); Presence.stop(); ActiveWidgetStore.stop(); if (DMRoomMap.shared()) DMRoomMap.shared().stop();