diff options
Diffstat (limited to 'src')
| -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, |