From f1122c35d30c6a62242e2c733b3c8204bac9f2c1 Mon Sep 17 00:00:00 2001 From: Keerthi Niranjan Date: Thu, 7 Sep 2017 14:08:12 +0530 Subject: [PATCH] SEARCH-155 Index real-time data. - removed the array for the message --- js/search/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/search/search.js b/js/search/search.js index c8de6fd4..4338df87 100644 --- a/js/search/search.js +++ b/js/search/search.js @@ -160,7 +160,7 @@ class Search { return new Error('Library not initialized'); } - let result = libSymphonySearch.symSEIndexRealTime(this.realTimeIndex, [ message ]); + let result = libSymphonySearch.symSEIndexRealTime(this.realTimeIndex, message); return result === 0 ? "Successful" : result }