Migration: set collection mtime when creating the first collections.

master
Tom Hacohen 2020-10-01 13:38:19 +03:00
parent 6475a8e343
commit 7403b9a61a
1 changed files with 2 additions and 0 deletions

View File

@ -447,11 +447,13 @@ export function WizardMigrationPage(props: OurPagePropsType) {
continue;
}
}
const mtime = (new Date()).getTime();
const meta: Etebase.CollectionMetadata = {
type: colType,
name: info.displayName,
description: info.description,
color: (info.color !== undefined) ? colorIntToHtml(info.color) : undefined,
mtime,
};
const collection = await colMgr.create(meta, "");
await colMgr.upload(collection);