mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Show js exception error in embeds now by returning 200
This commit is contained in:
parent
610fb60d49
commit
0fbd7dffdb
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})()
|
})()
|
||||||
|
|
Loading…
Add table
Reference in a new issue