diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2025-11-24 14:04:02 -0400 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2025-11-24 14:04:02 -0400 |
| commit | cbe8cf6accca530ecb061aa6cb4193853e48db83 (patch) | |
| tree | 388f2d69ff6545a64dbe3b3aa5e5bf26a56091a7 /src/content | |
| parent | 39de107c10bb7dbdc738ecf6bd5813fd6389fa4f (diff) | |
content: image: shush about missing thumbnails
Diffstat (limited to 'src/content')
| -rw-r--r-- | src/content/dependencies/image.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/content/dependencies/image.js b/src/content/dependencies/image.js index aacf2fed..af4b7fdd 100644 --- a/src/content/dependencies/image.js +++ b/src/content/dependencies/image.js @@ -184,16 +184,6 @@ export default { mediaSrc && checkIfImagePathHasCachedThumbnails(mediaSrc); - // Warn for images that *should* have cached thumbnail information but are - // missing from the thumbs cache. - if ( - slots.thumb && - !hasThumbnails && - !mediaSrc.endsWith('.gif') - ) { - logWarn`No thumbnail info cached: ${mediaSrc} - displaying original image here (instead of ${slots.thumb})`; - } - let displaySrc = originalSrc; // This is only distinguished from displaySrc by being a thumbnail, |