Revert to sync file read in card parser #3747

c69623278f260eded253a84db5e94845948f0002

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
src/character-card-parser.js+1 -1
@@ -88,7 +88,7 @@ export const parse = async (cardUrl, format) => {
8888
8989 switch (fileFormat) {
9090 case 'png': {
9191 const buffer = await fs.promises.readFilereadFileSync(cardUrl);
9292 return read(buffer);
9393 }
9494 }