[desktop] Improve robustness of cluster disabling condition (#2729)

Otherwise the code reaches the isInternalUser on logout, triggered by
the search service, and at a point when it does not have the auth token
anymore. Doesn't impact production builds, but doesn't hurt to make the
check more robust say for people who're trying dev builds.
This commit is contained in:
Manav Rathi
2024-08-16 17:47:58 +05:30
committed by GitHub

View File

@@ -337,8 +337,8 @@ let last: SearchPerson[] | undefined;
* WIP! Don't enable, dragon eggs are hatching here.
*/
export const wipClusterEnable = async () => {
if (!isDevBuild || !(await isInternalUser())) return false;
if (!process.env.NEXT_PUBLIC_ENTE_WIP_CL) return false;
if (!isDevBuild || !(await isInternalUser())) return false;
return true;
};