From ea8003c5417bebd4cb125584ea949bf366ffc76b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Wed, 11 Apr 2018 13:44:52 +0300 Subject: [PATCH] Fix an invalid variable reference --- chrome/content/zotero/xpcom/integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js index 5afae267a..a0ef7f288 100644 --- a/chrome/content/zotero/xpcom/integration.js +++ b/chrome/content/zotero/xpcom/integration.js @@ -2072,7 +2072,7 @@ Zotero.Integration.Field = class { getCode() { if (!this._code) { - ths._code = this._field.getCode(); + this._code = this._field.getCode(); } let start = this._code.indexOf('{'); if (start == -1) {