Index: gc_lang/fr/mailext/content/editor.js ================================================================== --- gc_lang/fr/mailext/content/editor.js +++ gc_lang/fr/mailext/content/editor.js @@ -23,11 +23,11 @@ for (let xNode of xRootNode.childNodes) { if (xNode.className !== "moz-cite-prefix" && xNode.tagName !== "BLOCKQUOTE" && (xNode.nodeType == Node.TEXT_NODE || (xNode.nodeType == Node.ELEMENT_NODE && !xNode.textContent.startsWith(">"))) && xNode.textContent !== "") { if (xNode.tagName === undefined) { - if (!prefs.getBoolPref("bCheckSignature") && xNode.textContent.startsWith("-- ")) { + if (!xGrammalectePrefs.getBoolPref("bCheckSignature") && xNode.textContent.startsWith("-- ")) { break; } yield xNode; } else if (this.lParsableNodes.includes(xNode.tagName)) { yield xNode;