Closes #52: Allow to use empty string as delimiter in xpathText
This commit is contained in:
parent
cb656c9456
commit
81c33f49dd
1 changed files with 1 additions and 1 deletions
|
@ -972,7 +972,7 @@ Zotero.Utilities = {
|
|||
strings[i] = elements[i].textContent;
|
||||
}
|
||||
|
||||
return strings.join(delimiter ? delimiter : ", ");
|
||||
return strings.join(delimiter !== undefined ? delimiter : ", ");
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue