From 9e7466f96718756d99c65671df4e2c1a8aba218d Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Fri, 4 Oct 2024 21:41:48 -0700 Subject: [PATCH] Disable dark video detector --- src/App.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index cdd7624..cb300d0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -229,7 +229,8 @@ export default { wasTooDark: false, // previous average was too dark // Configuration thresholds: how dark is too dark? (0-255) - threshold: 10, + // NOTE: 0=disable the feature. + threshold: 0, // 10, }, },