Fix 'title is null' error

Not sure why item.title would ever be null, but this was in a user's
error report and seemed to be causing a restart error.
This commit is contained in:
Dan Stillman 2018-08-21 19:05:29 -04:00
parent 1c8607d661
commit 475bd17b71

View file

@ -1455,7 +1455,7 @@ Zotero.Items = function() {
this.getSortTitle = function(title) {
if (title === false || title === undefined) {
if (title === false || title === undefined || title == null) {
return '';
}
if (typeof title == 'number') {