Fix getRevisionChangeset API call making etherpad crash
This commit is contained in:
parent
c9b80c6120
commit
4a9602cc57
1 changed files with 6 additions and 1 deletions
|
@ -187,7 +187,12 @@ exports.getRevisionChangeset = function(padID, rev, callback)
|
|||
//the client wants the latest changeset, lets return it to him
|
||||
else
|
||||
{
|
||||
callback(null, {"changeset": pad.getRevisionChangeset(pad.getHeadRevisionNumber())});
|
||||
pad.getRevisionChangeset(pad.getHeadRevisionNumber(), function(err, changeset)
|
||||
{
|
||||
if(ERR(err, callback)) return;
|
||||
|
||||
callback(null, changeset);
|
||||
})
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue