0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

fixes incorrect toJSON extension, for eager loaded models

This commit is contained in:
Tim Griesser 2013-08-22 13:53:46 -04:00
parent 6c6119a5c8
commit c83835a811

View file

@ -35,8 +35,8 @@ GhostBookshelf.Model = GhostBookshelf.Model.extend({
return attrs;
}
_.each(relations, function (key) {
attrs[key] = relations[key].toJSON();
_.each(relations, function (relation, key) {
attrs[key] = relation.toJSON ? relation.toJSON() : relation;
});
return attrs;