Don't send rageshakes or start sentry if we don't have config for them
This commit is contained in:
parent
fd3c0d9fc6
commit
eaf14a0562
2 changed files with 26 additions and 19 deletions
|
|
@ -54,6 +54,10 @@ export function useSubmitRageshake(): {
|
|||
|
||||
const submitRageshake = useCallback(
|
||||
async (opts) => {
|
||||
if (!Config.instance.config.rageshake?.submit_url) {
|
||||
throw new Error("No rageshake URL is configured");
|
||||
}
|
||||
|
||||
if (sending) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -258,14 +262,10 @@ export function useSubmitRageshake(): {
|
|||
);
|
||||
}
|
||||
|
||||
await fetch(
|
||||
Config.instance.config.rageshake?.submit_url ??
|
||||
DEFAULT_CONFIG.rageshake.submit_url,
|
||||
{
|
||||
method: "POST",
|
||||
body,
|
||||
}
|
||||
);
|
||||
await fetch(Config.instance.config.rageshake?.submit_url, {
|
||||
method: "POST",
|
||||
body,
|
||||
});
|
||||
|
||||
setState({ sending: false, sent: true, error: null });
|
||||
} catch (error) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue