commit ea8003c5417bebd4cb125584ea949bf366ffc76b parent 9a304b6699b780e70a8f5133557a08522f829237 Author: Adomas VenĨkauskas <adomas.ven@gmail.com> Date: Wed, 11 Apr 2018 13:44:52 +0300 Fix an invalid variable reference Diffstat:
| M | 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 @@ -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) {