Fixed the user agent header

This commit is contained in:
ArjixWasTaken 2023-02-19 16:44:29 +02:00
parent c306b7bbdd
commit d4a2be6e52

View file

@ -50,7 +50,7 @@ async function bulkFetchTimezones(ids: string[]): Promise<TimezoneDB | undefined
method: "POST", method: "POST",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
"User-Agent": VENCORD_USER_AGENT "X-User-Agent": VENCORD_USER_AGENT
}, },
body: JSON.stringify(ids), body: JSON.stringify(ids),
}); });