From 12fe19a3c2f712ee4a31829e56bfc43b22a7c136 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sat, 20 Mar 2021 15:44:27 +0000 Subject: [PATCH] fixed multiple quote selection not working --- src/js/userconfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/userconfig.js b/src/js/userconfig.js index 289b2f72f..f28fe3b62 100644 --- a/src/js/userconfig.js +++ b/src/js/userconfig.js @@ -771,7 +771,7 @@ function setQuoteLength(len, nosave, multipleMode) { if (len.length === 1 && len[0] === -1) len = [1]; ConfigSet.quoteLength(len); } else { - if (!Array.isArray(ConfigSet.quoteLength)) ConfigSet.quoteLength([]); + if (!Array.isArray(Config.quoteLength)) ConfigSet.quoteLength([]); if (len === null || isNaN(len) || len < -2 || len > 3) { len = 1; }