pad.js: wait write callback instead of buffer callback

pull/3941/head
Chocobozzz 2020-04-10 16:14:18 +02:00 committed by muxator
parent 53003d4471
commit 6cb78e51b0
1 changed files with 2 additions and 2 deletions

View File

@ -484,12 +484,12 @@ Pad.prototype.remove = async function remove() {
// delete all chat messages
promises.timesLimit(this.chatHead + 1, 500, function (i) {
return db.remove("pad:" + padID + ":chat:" + i);
return db.remove("pad:" + padID + ":chat:" + i, null);
})
// delete all revisions
promises.timesLimit(this.head + 1, 500, function (i) {
return db.remove("pad:" + padID + ":revs:" + i);
return db.remove("pad:" + padID + ":revs:" + i, null);
})
// remove pad from all authors who contributed