From 6e324a0dd159afadc2f626333f489a07e50dfcf4 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Thu, 17 Dec 2015 15:12:09 +0000 Subject: [PATCH] Whoops, didn't mean to add this --- src/components/structures/MatrixChat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js index f38c75d676..8ad5b44762 100644 --- a/src/components/structures/MatrixChat.js +++ b/src/components/structures/MatrixChat.js @@ -547,9 +547,9 @@ module.exports = React.createClass({ } }, - notifyNewScreen: function(screen, queryParamString) { + notifyNewScreen: function(screen) { if (this.props.onNewScreen) { - this.props.onNewScreen(screen, queryParamString); + this.props.onNewScreen(screen); } },