This commit is contained in:
33333-33333 2026-06-21 14:09:35 +09:00
commit 37087d08a7
189 changed files with 12864 additions and 9589 deletions

View file

@ -138,7 +138,7 @@ function loadImageAsset(asset, priority = "auto") {
img.onerror = () => { resolve(null); };
});
imagePromises.set(asset.id, promise);
if (!img.src) img.src = asset.path;
if (!img.src) img.src = (window.TarinaiVersion?.withStaticVersion ? window.TarinaiVersion.withStaticVersion(asset.path) : asset.path);
return promise;
}