commit fa82b66c9f042e6c1a11d32a53251d866e0190ab
parent 595f775c398d42904399e0a0c1156862873a83d4
Author: Dan Stillman <dstillman@zotero.org>
Date: Tue, 12 Aug 2008 07:13:04 +0000
Fix error in Zotero.Attachments.importFromDocument()
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/attachments.js b/chrome/content/zotero/xpcom/attachments.js
@@ -558,7 +558,7 @@ Zotero.Attachments = new function(){
var nsIURL = ioService.newURI(url, null, null);
wbp.progressListener = new Zotero.WebProgressFinishListener(function () {
try {
- attachmentItem.attachmentPath = this.getPath(
+ attachmentItem.attachmentPath = Zotero.Attachments.getPath(
file,
Zotero.Attachments.LINK_MODE_IMPORTED_URL
);