diff --git a/src/components/still-image/still-image.js b/src/components/still-image/still-image.js index 3111e5bd..480de9fa 100644 --- a/src/components/still-image/still-image.js +++ b/src/components/still-image/still-image.js @@ -43,11 +43,12 @@ const StillImage = { this.isAnimated = true return } + // harmless CORS errors without-- clean console with + if (!this.$store.state.instance.mediaProxyAvailable) return // Animated JPEGs? if (!(this.src.endsWith('.webp') || this.src.endsWith('.png'))) return // Browser Cache should ensure image doesn't get loaded twice if cache exists fetch(image.src, { - mode: 'cors', referrerPolicy: 'same-origin' }) .then(data => {