Skip to content

Commit

Permalink
[BUGFIX release] Fix #12083
Browse files Browse the repository at this point in the history
  • Loading branch information
krisselden authored and stefanpenner committed Aug 14, 2015
1 parent dd93ba5 commit c0975b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-metal/lib/chains.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function isObject(obj) {
}

function isVolatile(obj) {
return !(isObject(obj) && obj.isDescriptor && !obj._volatile);
return !(isObject(obj) && obj.isDescriptor && obj._volatile === false);
}

function Chains() { }
Expand Down

0 comments on commit c0975b1

Please sign in to comment.