From 0a5bf7a5c24983ea2133ee9b688bc21901d2de4e Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 9 Sep 2019 12:19:29 +0200 Subject: [PATCH] Update atime when updating the owners of a pad --- www/common/outer/async-store.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index 928978574..1148df343 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -1212,6 +1212,7 @@ define([ allData.forEach(function (obj) { obj.data.owners = metadata.owners; if (metadata.expire) { + obj.data.atime = +new Date(); obj.data.expire = +metadata.expire; } });