SEARCH-155

Index real-time data.

- removed the array for the message
This commit is contained in:
Keerthi Niranjan 2017-09-07 14:08:12 +05:30
parent 652a3389f3
commit f1122c35d3

View File

@ -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
}