Randomly this fetch statement: ```js export async function getPlayerData(careerUrl) { const res

Randomly this fetch statement:

export async function getPlayerData(careerUrl) {
    const res = await fetch('https://<redacted>.fly.dev/career', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({
            careerUrl: careerUrl,
        }),
    });

    const account = await res.json();

    return account;
}


returns a 530 error code 1016.

other times it works perfectly. no clue whats happening
Was this page helpful?