From 8f2068fe48f52c36c0da4b0f570e8fbc8edf3186 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 1 Oct 2020 13:37:48 +0300 Subject: [PATCH] Wizard: set collection mtime when creating the first collections. --- src/WizardPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/WizardPage.tsx b/src/WizardPage.tsx index 3cf72f7..5087c88 100644 --- a/src/WizardPage.tsx +++ b/src/WizardPage.tsx @@ -62,6 +62,7 @@ function SetupCollectionsPage(props: PagePropsType) { const meta: Etebase.CollectionMetadata = { type, name, + mtime: (new Date()).getTime(), }; const collection = await colMgr.create(meta, ""); await colMgr.upload(collection);