From bce97efbf8d901321416a52b60db3341e3337394 Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Thu, 12 Feb 2026 12:23:51 -0800 Subject: [PATCH] Remove debugging console log --- javascript/gallery.js | 1 - 1 file changed, 1 deletion(-) diff --git a/javascript/gallery.js b/javascript/gallery.js index 7f4d2ad67..efa7aa4c3 100644 --- a/javascript/gallery.js +++ b/javascript/gallery.js @@ -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';