diff --git a/chrome/content/zotero/xpcom/annotations.js b/chrome/content/zotero/xpcom/annotations.js index 438dc71a9a..d69b26bd86 100644 --- a/chrome/content/zotero/xpcom/annotations.js +++ b/chrome/content/zotero/xpcom/annotations.js @@ -129,6 +129,9 @@ Zotero.Annotations = new function () { else if (!o.isExternal && isGroup) { o.authorName = Zotero.Users.getName(item.createdByUserID); o.isAuthorNameAuthoritative = true; + if (item.lastModifiedByUserID) { + o.lastModifiedByUser = Zotero.Users.getName(item.lastModifiedByUserID); + } } o.readOnly = o.isExternal || !isAuthor; if (o.type == 'highlight') {