diff options
author | John McLear <john@mclear.co.uk> | 2013-02-26 16:32:09 -0800 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-02-26 16:32:09 -0800 |
commit | 1fd99bfd4396b7f5eb8e780bbc054d65a4084461 (patch) | |
tree | 7e621a30b77847c5bd6923ca9587a3f1464ea545 /bin/deletePad.js | |
parent | ad82c8d7549afa23753f70531889eecbd7a5fce8 (diff) | |
download | etherpad-lite-1fd99bfd4396b7f5eb8e780bbc054d65a4084461.zip |
fix deletePad script by remembering not to miss a callback..
Diffstat (limited to 'bin/deletePad.js')
-rw-r--r-- | bin/deletePad.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/deletePad.js b/bin/deletePad.js index d1bde2a4..4ed7e2c9 100644 --- a/bin/deletePad.js +++ b/bin/deletePad.js @@ -50,6 +50,8 @@ async.series([ padManager.removePad(padId, function(err){ callback(err); }); +console.error("cool I got here"); + callback(); } ], function (err) { |