From 495e7e62be409f4ba9bde7233b2d457ef5d7e0ed Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Mon, 12 Jan 2026 21:35:21 +0000 Subject: [PATCH] fix --- apps/server/src/core/share/share.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/core/share/share.service.ts b/apps/server/src/core/share/share.service.ts index 92cce96a..5933ad8d 100644 --- a/apps/server/src/core/share/share.service.ts +++ b/apps/server/src/core/share/share.service.ts @@ -189,7 +189,7 @@ export class ShareService { .orderBy('page_hierarchy.level', 'asc') .executeTakeFirst(); - if (!share || share.workspaceId != workspaceId) { + if (!share || share.workspaceId !== workspaceId) { return undefined; }