Merge pull request #3764 from vladmandic/dev

fix typo
This commit is contained in:
Vladimir Mandic
2025-02-20 14:31:27 -05:00
committed by GitHub
+2 -2
View File
@@ -20,8 +20,8 @@ async function preloadImages() {
try {
await Promise.all(imagePromises);
return true;
} catch (error) {
error(`preloadImages: ${error}`);
} catch (err) {
error(`preloadImages: ${err}`);
return false;
}
}