Fix inserting first citation, broken by b526a7

This commit is contained in:
Simon Kornblith 2012-01-27 15:37:02 -05:00
parent 5f89402ce6
commit c1672e4d4e

View File

@ -1615,7 +1615,7 @@ Zotero.Integration.Session.prototype.resetRequest = function(doc) {
Zotero.Integration.Session.prototype.setData = function(data) { Zotero.Integration.Session.prototype.setData = function(data) {
var oldStyle = (this.data && this.data.style ? this.data.style : false); var oldStyle = (this.data && this.data.style ? this.data.style : false);
this.data = data; this.data = data;
if(!oldStyle || (data.style.styleID && oldStyle.styleID != data.style.styleID)) { if(data.style.styleID && (!oldStyle || oldStyle.styleID != data.style.styleID)) {
this.styleID = data.style.styleID; this.styleID = data.style.styleID;
try { try {
var getStyle = Zotero.Styles.get(data.style.styleID); var getStyle = Zotero.Styles.get(data.style.styleID);
@ -1631,7 +1631,7 @@ Zotero.Integration.Session.prototype.setData = function(data) {
} }
return true; return true;
} else { } else if(oldStyle) {
data.style = oldStyle; data.style = oldStyle;
} }
return false; return false;