1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Don't throw exception on stop if no DMRoomMap

Prevents an exception when running the riot 'loading' tests in
isolation
This commit is contained in:
David Baker
2016-12-09 10:32:56 +00:00
parent 289f8ab439
commit 8d1095bc26

View File

@@ -356,7 +356,7 @@ export function stopMatrixClient() {
Notifier.stop(); Notifier.stop();
UserActivity.stop(); UserActivity.stop();
Presence.stop(); Presence.stop();
DMRoomMap.shared().stop(); if (DMRoomMap.shared()) DMRoomMap.shared().stop();
var cli = MatrixClientPeg.get(); var cli = MatrixClientPeg.get();
if (cli) { if (cli) {
cli.stopClient(); cli.stopClient();