Ignore empty bibliography fields
This commit is contained in:
parent
505e4a5674
commit
2a9d1d2693
1 changed files with 1 additions and 1 deletions
|
@ -1489,7 +1489,7 @@ Zotero.Integration.Fields.prototype._processFields = function(i) {
|
|||
throw e;
|
||||
}
|
||||
}
|
||||
} else if(type === INTEGRATION_TYPE_BIBLIOGRAPHY) {
|
||||
} else if(type === INTEGRATION_TYPE_BIBLIOGRAPHY && field.getText().trim() !== "") {
|
||||
this._bibliographyFields.push(field);
|
||||
if(!this._session.bibliographyData && !this._bibliographyData) {
|
||||
this._bibliographyData = content;
|
||||
|
|
Loading…
Add table
Reference in a new issue