commit cae9a89b9d9ceea2bd22b6eb62b6e8285781aa9a parent 8e25a4bdf3ac873b7e821d52b9ab89425805825e Author: Aurimas Vinckevicius <aurimas.dev@gmail.com> Date: Tue, 10 Feb 2015 21:26:50 -0600 Fix syntax error in varDump Diffstat:
| M | chrome/content/zotero/xpcom/utilities.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js @@ -1238,7 +1238,7 @@ Zotero.Utilities = { if (isError) { header = obj.constructor.name ? obj.constructor.name : 'Error'; } else { - header = obj.name ? obj.name + ' ' : '') + 'Exception'; + header = (obj.name ? obj.name + ' ' : '') + 'Exception'; } return header + ': '