Remove debugging console log

pull/4646/head
awsr 2026-02-12 12:23:51 -08:00 committed by GitHub
parent 82e91439bf
commit bce97efbf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

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';