Skip to content

Commit

Permalink
Build files
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed Jan 1, 2024
1 parent 5fc9bec commit a95e25e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@
zip.file(`my-creations_stats/${id}.json`, JSON.stringify(stats));
const painterData = await store_getCreationPainterData(id);
zip.file(`my-creations_painterdata/${id}.json`, JSON.stringify(painterData));
csvDataset.push([id, date, def.base, def.name, stats.timesPd, stats.timesCd]);
csvDataset.push([id, date, def.base, def.name, stats?.timesPd, stats?.timesCd]);
}
else {
zip.file(`other-creations/${filename}.png`, img);
Expand Down

0 comments on commit a95e25e

Please sign in to comment.