Protects against a null atext in cloneAText

This commit is contained in:
Francois Cassin 2015-11-10 16:21:43 +01:00
parent f2836125dc
commit 2bd698343a
2 changed files with 12 additions and 5 deletions

View file

@ -188,7 +188,12 @@ Pad.prototype.getInternalRevisionAText = function getInternalRevisionAText(targe
db.getSub("pad:"+_this.id+":revs:"+keyRev, ["meta", "atext"], function(err, _atext)
{
if(ERR(err, callback)) return;
atext = Changeset.cloneAText(_atext);
try {
atext = Changeset.cloneAText(_atext);
} catch (e) {
return callback(e);
}
callback();
});
},