index on fix-headers-fileserver: 40e6cfd14 fix: fs needs headers not body

pull/3178/head
Audric Ackermann 8 months ago
parent 98f19db037
commit ba601360de
No known key found for this signature in database

@ -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),

@ -414,6 +414,7 @@ export const SessionInput = (props: Props) => {
) : (
<StyledPlaceholder
error={textErrorStyle}
data-testid={inputDataTestId}
textSize={textSize}
editable={editable}
centerText={centerText}

@ -13,6 +13,7 @@ import { ToastUtils } from '../../session/utils';
import { GoogleChrome } from '../../util';
import { autoScaleForAvatar, autoScaleForThumbnail } from '../../util/attachmentsUtil';
import { isAudio } from '../MIME';
import { isTestIntegration } from '../../shared/env_vars';
export const THUMBNAIL_SIDE = 200;
export const THUMBNAIL_CONTENT_TYPE = 'image/png';
@ -206,8 +207,8 @@ export async function autoScaleAvatarBlob(file: File) {
* Shows the system file picker for images, scale the image down for avatar/opengroup measurements and return the blob objectURL on success
*/
export async function pickFileForAvatar(): Promise<string | null> {
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'
);

1
ts/window.d.ts vendored

@ -34,7 +34,6 @@ declare global {
useOnionRequests: boolean;
useTestNet: boolean;
useClosedGroupV3: boolean;
integrationTestEnv: boolean;
debug: {
debugLogging: boolean;
debugLibsessionDumps: boolean;

Loading…
Cancel
Save