stringify console.logs becouse of asynchrone nature from chromes interpretation... WAT

This commit is contained in:
IgnatzHome 2018-05-20 10:11:46 +02:00
parent eb859dac3a
commit 778a29855f

View file

@ -155,13 +155,13 @@ class AdvancedFilter {
_arrayToSelector(commands)
{
console.log('Parts: ', commands);
console.log('Parts: ', JSON.stringify(commands));
try {
//let changed = false;
this._processConditions(commands);
console.log('Conditions: ', commands);
console.log('Conditions: ', JSON.stringify(commands));
this._processLogicalOperators(commands);
console.log('Operator: ', commands);
console.log('Operator: ', JSON.stringify(commands));
}
catch (e){return { $in: [] };}
return {$or: commands};