Skip to content

Commit

Permalink
fix: correct field name
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Dec 13, 2016
1 parent ece401c commit 04a0e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -306,7 +306,7 @@ Kareem.prototype.clone = function() {
n._pres[key] = this._pres[key].slice();
}
for (var key in this._posts) {
if (!this._pres.hasOwnProperty(key)) {
if (!this._posts.hasOwnProperty(key)) {
continue;
}
n._posts[key] = this._posts[key].slice();
Expand Down

0 comments on commit 04a0e9d

Please sign in to comment.