From ae84f3cbe8638c31e473808155dd57a9695be9be Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Fri, 13 May 2022 16:02:40 +0200 Subject: [PATCH] :bug: Fix typo in debug option --- frontend/src/app/worker/thumbnails.cljs | 2 +- frontend/src/debug.cljs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/worker/thumbnails.cljs b/frontend/src/app/worker/thumbnails.cljs index 832577364..92bf40cde 100644 --- a/frontend/src/app/worker/thumbnails.cljs +++ b/frontend/src/app/worker/thumbnails.cljs @@ -116,7 +116,7 @@ (rx/map render-thumbnail) (rx/mapcat persist-thumbnail)))] - (if (debug? :disable-thumbnail-cachee) + (if (debug? :disable-thumbnail-cache) (->> (request-data-for-thumbnail file-id revn) (rx/map render-thumbnail)) (->> (request-thumbnail file-id revn) diff --git a/frontend/src/debug.cljs b/frontend/src/debug.cljs index e86e324cc..66ef857ee 100644 --- a/frontend/src/debug.cljs +++ b/frontend/src/debug.cljs @@ -63,7 +63,7 @@ :text-outline ;; Disable thumbnail cache - :disable-thumbnail-cachee + :disable-thumbnail-cache }) ;; These events are excluded when we activate the :events flag