Fixed error in avatar cache
This commit is contained in:
parent
bbff99aff0
commit
e3a90c33f4
@ -26,7 +26,7 @@ export default async function handler(req, res) {
|
|||||||
fs.writeFileSync(imagePath, buffer);
|
fs.writeFileSync(imagePath, buffer);
|
||||||
res.setHeader("Content-Type", "image/jpg");
|
res.setHeader("Content-Type", "image/jpg");
|
||||||
res.send(buffer);
|
res.send(buffer);
|
||||||
console.log('Steam Avatar Cache - Added avatar "' + mapHash + '"');
|
console.log('Steam Avatar Cache - Added avatar "' + steamId + '"');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const buffer = fs.readFileSync(imagePath);
|
const buffer = fs.readFileSync(imagePath);
|
||||||
|
Reference in New Issue
Block a user