From 805354bd2c3d2e6233c55833f561d489d8b40445 Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 8 May 2017 16:39:11 +0100 Subject: [PATCH] Revert unintentional change --- src/components/views/dialogs/ChatInviteDialog.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/views/dialogs/ChatInviteDialog.js b/src/components/views/dialogs/ChatInviteDialog.js index b349b94e5d..7ba503099a 100644 --- a/src/components/views/dialogs/ChatInviteDialog.js +++ b/src/components/views/dialogs/ChatInviteDialog.js @@ -191,7 +191,6 @@ module.exports = React.createClass({ this.queryChangedDebouncer = setTimeout(() => { // Only do search if there is something to search if (query.length > 0 && query != '@') { - performance.mark('start'); // Weighted keys prefer to match userIds when first char is @ this._fuse.options.keys = [{ name: 'displayName', @@ -200,7 +199,6 @@ module.exports = React.createClass({ name: 'userId', weight: query[0] === '@' ? 0.9 : 0.1, }]; - performance.mark('middle'); queryList = this._fuse.search(query).map((user) => { // Return objects, structure of which is defined // by InviteAddressType @@ -212,9 +210,6 @@ module.exports = React.createClass({ isKnown: true, } }); - performance.mark('end'); - performance.measure('setopts', 'start', 'middle'); - performance.measure('search', 'middle', 'end'); // If the query is a valid address, add an entry for that // This is important, otherwise there's no way to invite