1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 09:41:35 +02:00

Merge branch 'slowcord' of github.com:MaddyUnderStars/fosscord-server into slowcord

This commit is contained in:
Madeline 2022-07-22 14:02:40 +10:00
commit 65143966d3
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

View File

@ -31,7 +31,7 @@ const toDataURL = async (url: string) => {
const blob = await response.blob();
const buffer = Buffer.from(await blob.text());
return `data:${blob.type};base64,${buffer.toString("base64")}`;
}
};
class Discord {
static getAccessToken = async (req: Request, res: Response) => {
@ -126,9 +126,14 @@ app.get("/oauth/:type", async (req, res) => {
});
if (details.avatar_url) {
const avatar = await handleFile(`/avatars/${user.id}`, await toDataURL(details.avatar_url) as string);
user.avatar = avatar;
await user.save();
try {
const avatar = await handleFile(`/avatars/${user.id}`, await toDataURL(details.avatar_url) as string);
user.avatar = avatar;
await user.save();
}
catch (e) {
console.error(e);
}
}
}