[API] Observer path was accessing object key incorrectly

This commit is contained in:
Henry 2016-12-15 15:21:45 -08:00
parent 976333d7f7
commit 3544caf4be

View File

@ -41,7 +41,7 @@ define([
}
function qualifiedEventName(object, eventName) {
return [object.key.identifier, eventName].join(':');
return [object.identifier.key, eventName].join(':');
}
MutableObject.prototype.stopListening = function () {