From d4fcc23fb382aba7c65bc7e5376d2ab9fc6e2f8a Mon Sep 17 00:00:00 2001 From: John McLear Date: Fri, 5 Jun 2020 22:46:12 +0100 Subject: [PATCH] backups: include the pool every 100 revs stored (#3991) --- src/node/db/Pad.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node/db/Pad.js b/src/node/db/Pad.js index 158bfafb..3fe1dda2 100644 --- a/src/node/db/Pad.js +++ b/src/node/db/Pad.js @@ -93,6 +93,7 @@ Pad.prototype.appendRevision = function appendRevision(aChangeset, author) { } if (newRev % 100 == 0) { + newRevData.meta.pool = this.pool; newRevData.meta.atext = this.atext; }