You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-16 22:01:54 +03:00
Merge pull request #2770 from matrix-org/dbkr/fix_instant_rrs_pt2
Fix instantly sending RRs
This commit is contained in:
@ -457,7 +457,7 @@ async function startMatrixClient() {
|
||||
dis.dispatch({action: 'will_start_client'}, true);
|
||||
|
||||
Notifier.start();
|
||||
UserActivity.start();
|
||||
UserActivity.sharedInstance().start();
|
||||
Presence.start();
|
||||
DMRoomMap.makeShared().start();
|
||||
ActiveWidgetStore.start();
|
||||
@ -503,7 +503,7 @@ function _clearStorage() {
|
||||
*/
|
||||
export function stopMatrixClient() {
|
||||
Notifier.stop();
|
||||
UserActivity.stop();
|
||||
UserActivity.sharedInstance().stop();
|
||||
Presence.stop();
|
||||
ActiveWidgetStore.stop();
|
||||
if (DMRoomMap.shared()) DMRoomMap.shared().stop();
|
||||
|
Reference in New Issue
Block a user