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 a5382fb6b5

View File

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