mirror of
https://github.com/zotero/zotero.git
synced 2026-09-23 00:43:17 +00:00
Fix == use
This commit is contained in:
parent
9146fb03d9
commit
57da88ac3d
1 changed files with 1 additions and 1 deletions
|
|
@ -484,7 +484,7 @@ Zotero.OpenURL = new function() {
|
|||
// the plain author, since it might have a middle initial
|
||||
if (item.creators[j].lastName == complexAu[i].lastName &&
|
||||
item.creators[j].firstName &&
|
||||
(item.creators[j].firstName == complexAu[i].firstName == "" ||
|
||||
((item.creators[j].firstName == "" && complexAu[i].firstName == "") ||
|
||||
(item.creators[j].firstName.length >= complexAu[i].firstName.length &&
|
||||
item.creators[j].firstName.substr(0, complexAu[i].firstName.length) == complexAu[i].firstName))) {
|
||||
pushMe = false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue