We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a2fe25 commit 1b68254Copy full SHA for 1b68254
lib/transform.js
@@ -11,6 +11,12 @@ var findfield = function(f, flist) {
11
var x = function(doc, schema) {
12
for(var i in doc) {
13
var v = doc[i];
14
+ /*
15
+ commenting out the below because schema.fields contain the original
16
+ field names (spaces are not replaces with underscores). facets end
17
+ up not being handled properly when field is an 'arrayofstrings' and
18
+ contains spaces in the title.
19
+ */
20
// i = i.replace(/\W/g,"_");
21
var f = findfield(i, schema.fields);
22
if (f) {
0 commit comments