diff options
author | bobzel <zzzman@gmail.com> | 2021-03-08 10:00:36 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-08 10:00:36 -0500 |
commit | 94f2e575b95c6edd5410d440f7410d712c90b5db (patch) | |
tree | bfdd27227a9ea9b07ee62adf3ad73db26e71942b /src/client/util/CurrentUserUtils.ts | |
parent | ca6e8145c5883e32f4cc65edbfff245cdde326ed (diff) |
added doc data content synching to Git-like operations.
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 8b425f929..ccdfeed5f 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -988,7 +988,7 @@ export class CurrentUserUtils { static async updateUserDocument(doc: Doc, sharingDocumentId: string, linkDatabaseId: string) { if (!doc.globalGroupDatabase) doc.globalGroupDatabase = Docs.Prototypes.MainGroupDocument(); const groups = await DocListCastAsync((doc.globalGroupDatabase as Doc).data); - reaction(() => DateCast((doc.globalGroupDatabase as Doc).lastModified), + reaction(() => DateCast((doc.globalGroupDatabase as Doc)["data-lastModified"]), async () => { const groups = await DocListCastAsync((doc.globalGroupDatabase as Doc).data); const mygroups = groups?.filter(group => JSON.parse(StrCast(group.members)).includes(Doc.CurrentUserEmail)) || []; |