Show js exception error in embeds now by returning 200

This commit is contained in:
dangered wolf 2023-08-22 01:53:46 -04:00
parent 610fb60d49
commit 0fbd7dffdb
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ const Experiments: { [key in Experiment]: ExperimentConfig } = {
export const experimentCheck = (experiment: Experiment, condition = true) => { export const experimentCheck = (experiment: Experiment, condition = true) => {
console.log(`Checking experiment ${experiment}`); console.log(`Checking experiment ${experiment}`);
const experimentEnabled = const experimentEnabled =
Experiments[experiment].percentage > Math.random() && condition; (Experiments[experiment].percentage > Math.random()) && condition;
console.log(`Experiment ${experiment} enabled: ${experimentEnabled}`); console.log(`Experiment ${experiment} enabled: ${experimentEnabled}`);
return experimentEnabled; return experimentEnabled;
}; };

View file

@ -520,7 +520,7 @@ const sentryWrapper = async (event: FetchEvent, test = false): Promise<void> =>
'content-type': 'text/html', 'content-type': 'text/html',
'cache-control': 'max-age=1' 'cache-control': 'max-age=1'
}, },
status: 500 status: 200
}); });
} }
})() })()