aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/CurrentUserUtils.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-03-31 12:57:21 -0400
committerbobzel <zzzman@gmail.com>2022-03-31 12:57:21 -0400
commitdea5f9c74b62706b17958d95b154005af271cf59 (patch)
treebdf34ccf9ab8d617f12ba7ed7032bbb0fa2a0089 /src/client/util/CurrentUserUtils.ts
parent85c24ec4dcc39551e8c7de83d3482ec15472c030 (diff)
fixed initialization of myPublishedDocs to be a simple list.
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r--src/client/util/CurrentUserUtils.ts10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts
index e51abf63b..f2094407d 100644
--- a/src/client/util/CurrentUserUtils.ts
+++ b/src/client/util/CurrentUserUtils.ts
@@ -1142,15 +1142,7 @@ export class CurrentUserUtils {
// Sharing sidebar is where shared documents are contained
static async setupSharingSidebar(doc: Doc, sharingDocumentId: string, linkDatabaseId: string) {
if (doc.myPublishedDocs === undefined) {
- let pubDocs = Docs.newAccount ? undefined : Cast((await doc.myPublishedDocs), Doc, null);
- if (!pubDocs) {
- pubDocs = new Doc(linkDatabaseId, true);
- (pubDocs as Doc).title = "LINK DATABASE: " + Doc.CurrentUserEmail;
- (pubDocs as Doc).author = Doc.CurrentUserEmail;
- (pubDocs as Doc).data = new List<Doc>([]);
- (pubDocs as Doc)["acl-Public"] = SharingPermissions.Augment;
- doc.myPublishedDocs = new PrefetchProxy(pubDocs);
- }
+ doc.myPublishedDocs = new List<Doc>();
}
if (doc.myLinkDatabase === undefined) {
let linkDocs = Docs.newAccount ? undefined : await DocServer.GetRefField(linkDatabaseId);