Index: gc_lang/fr/webext/content_scripts/panel_gc.js ================================================================== --- gc_lang/fr/webext/content_scripts/panel_gc.js +++ gc_lang/fr/webext/content_scripts/panel_gc.js @@ -511,11 +511,11 @@ navigator.clipboard.writeText(sText) .then( (res) => { window.setTimeout(() => { this.xClipboardButton.textContent = "📋"; }, 2000); } ) .catch( - (e) => { showError(e); this._sendTextToClipboard(sText); } + (e) => { showError(e); this._sendTextToClipboardFallback(sText); } ); } else { this._sendTextToClipboardFallback(sText); } }