diff --git a/src/Rules.js b/src/Rules.js index 3a7743f..9dfa5c4 100755 --- a/src/Rules.js +++ b/src/Rules.js @@ -2544,8 +2544,12 @@ enioka.rules = ( return this.object.getAttributeValue(attribute); } else { - info_debug('This object is not accessible by the rule engine ' , this.object); - return null; + if (this.object[attribute]) { + return this.object[attribute]; + } else { + info_debug('This object is not accessible by the rule engine ' , this.object); + return null; + } } } else {