Merge branch 'staging' into redesign-extension-manager

This commit is contained in:
Cohee
2024-12-08 16:30:16 +02:00
2 changed files with 1074 additions and 1073 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -158,7 +158,8 @@ async function tryReadImage(imgPath, crop) {
return image;
}
// If it's an unsupported type of image (APNG) - just read the file as buffer
catch {
catch (error) {
console.log(`Failed to read image: ${imgPath}`, error);
return fs.readFileSync(imgPath);
}
}