mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
Merge pull request #846 from jhollinger/master
Fix getLastEdited API method
This commit is contained in:
commit
4ca01ba344
1 changed files with 4 additions and 1 deletions
|
@ -298,7 +298,10 @@ exports.getLastEdited = function(padID, callback)
|
||||||
getPadSafe(padID, true, function(err, pad)
|
getPadSafe(padID, true, function(err, pad)
|
||||||
{
|
{
|
||||||
if(ERR(err, callback)) return;
|
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…
Add table
Add a link
Reference in a new issue