From ba601360de8113f3ffdbbb3d77c8fe34f00faf59 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 16 Aug 2024 13:43:52 +1000 Subject: [PATCH] index on fix-headers-fileserver: 40e6cfd14 fix: fs needs headers not body --- preload.js | 1 - ts/components/inputs/SessionInput.tsx | 1 + ts/types/attachments/VisualAttachment.ts | 5 +++-- ts/window.d.ts | 1 - 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/preload.js b/preload.js index 9ee45d477..c143899f3 100644 --- a/preload.js +++ b/preload.js @@ -30,7 +30,6 @@ window.getNodeVersion = () => configAny.node_version; window.sessionFeatureFlags = { useOnionRequests: true, useTestNet: isTestNet() || isTestIntegration(), - integrationTestEnv: isTestIntegration(), useClosedGroupV3: false, debug: { debugLogging: !_.isEmpty(process.env.SESSION_DEBUG), diff --git a/ts/components/inputs/SessionInput.tsx b/ts/components/inputs/SessionInput.tsx index 78f92d6ba..e7e5a9b66 100644 --- a/ts/components/inputs/SessionInput.tsx +++ b/ts/components/inputs/SessionInput.tsx @@ -414,6 +414,7 @@ export const SessionInput = (props: Props) => { ) : ( { - if (window.sessionFeatureFlags.integrationTestEnv) { - window.log.info( + if (isTestIntegration()) { + window.log.warn( 'shorting pickFileForAvatar as it does not work in playwright/notsending the filechooser event' ); diff --git a/ts/window.d.ts b/ts/window.d.ts index e7f973264..b7281c1dc 100644 --- a/ts/window.d.ts +++ b/ts/window.d.ts @@ -34,7 +34,6 @@ declare global { useOnionRequests: boolean; useTestNet: boolean; useClosedGroupV3: boolean; - integrationTestEnv: boolean; debug: { debugLogging: boolean; debugLibsessionDumps: boolean;