From ee819dfdf8871cdbbb07b435bd3a4ba9285c71e1 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 11 Feb 2020 09:32:09 +0000 Subject: [PATCH] fix call to SettngsStore.watchSetting, it takes a roomID --- src/components/structures/MessagePanel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/MessagePanel.js b/src/components/structures/MessagePanel.js index 445d9019d1..821e370628 100644 --- a/src/components/structures/MessagePanel.js +++ b/src/components/structures/MessagePanel.js @@ -167,7 +167,7 @@ export default class MessagePanel extends React.Component { this._scrollPanel = createRef(); this._showTypingNotificationsWatcherRef = - SettingsStore.watchSetting("showTypingNotifications", this.onShowTypingNotificationsChange); + SettingsStore.watchSetting("showTypingNotifications", null, this.onShowTypingNotificationsChange); } componentDidMount() {