Merge pull request #4646 from awsr/patch-2

Remove debugging console log
This commit is contained in:
Vladimir Mandic
2026-02-12 21:38:57 +01:00
committed by GitHub
-1
View File
@@ -450,7 +450,6 @@ class GalleryFile extends HTMLElement {
}
this.hash = await getHash(`${this.src}/${this.size}/${this.mtime}`); // eslint-disable-line
console.log('CREATE HASH', this.hash, `${this.src}/${this.size}/${this.mtime}`);
const cachedData = (this.hash && opts.browser_cache) ? await idbGet(this.hash).catch(() => undefined) : undefined;
const img = document.createElement('img');
img.className = 'gallery-file';