Bugfix to getLastEdited API method, issue #845
parent
f95e2793d7
commit
6d5fe459f0
|
@ -298,7 +298,10 @@ exports.getLastEdited = function(padID, callback)
|
|||
getPadSafe(padID, true, function(err, pad)
|
||||
{
|
||||
if(ERR(err, callback)) return;
|
||||
callback(null, {lastEdited: pad.getLastEdited()});
|
||||
pad.getLastEdit(function(err, value) {
|
||||
if(ERR(err, callback)) return;
|
||||
callback(null, {lastEdited: value});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue