Skip to content

Commit

Permalink
[BUGFIX beta] Fix non object paths
Browse files Browse the repository at this point in the history
  • Loading branch information
krisselden committed Nov 1, 2016
1 parent f359046 commit 3f685ae
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 @@ -166,7 +166,7 @@ function ChainNode(parent, key, value) {
}

function lazyGet(obj, key) {
if (!obj) {
if (!isObject(obj)) {
return;
}

Expand Down

0 comments on commit 3f685ae

Please sign in to comment.