Compare commits
No commits in common. "906e0a808e39d5053c6862ddbedbd33f786265b8" and "1f6d602109a20e18aa57a7ba322f196dfdc959ef" have entirely different histories.
906e0a808e
...
1f6d602109
|
@ -14,7 +14,7 @@ export default translator({
|
|||
|
||||
const browser_version = "113.0.5666.197",
|
||||
browser_version_short = browser_version.split(".")[1],
|
||||
client_build_number = "347115", // todo: figure out how to get this?
|
||||
client_build_number = 347115, // todo: figure out how to get this?
|
||||
ua = `Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/${browser_version} Safari/537.36`
|
||||
|
||||
// copied from a firefox private browsing window
|
||||
|
@ -30,10 +30,16 @@ export default translator({
|
|||
"X-Super-Properties": Buffer.from(
|
||||
JSON.stringify({
|
||||
os: "Windows",
|
||||
browser: "Discord Client",
|
||||
os_arch: "x64",
|
||||
browser: "Chrome",
|
||||
device: "",
|
||||
system_locale: "en-US",
|
||||
os_version: "10.0.22621",
|
||||
browser_user_agent: ua,
|
||||
browser_version,
|
||||
os_version: "10",
|
||||
referrer: "",
|
||||
referring_domain: "",
|
||||
referrer_current: "",
|
||||
referring_domain_current: "",
|
||||
release_channel: "stable",
|
||||
client_build_number,
|
||||
client_event_source: null,
|
||||
|
|
|
@ -49,9 +49,9 @@ export default translator({
|
|||
headers: {
|
||||
Authorization: `Bearer ${apiKey}`,
|
||||
"Content-Type": "application/json",
|
||||
method: "POST",
|
||||
},
|
||||
body: JSON.stringify({ avatarId }),
|
||||
method: "POST",
|
||||
})
|
||||
|
||||
if (!updateRequest.ok)
|
||||
|
|
Loading…
Reference in a new issue