From 3e7f1f0608573adb360186f5b65ac41ac4209ab2 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 28 Nov 2009 00:31:55 +0000 Subject: [PATCH] Make key-based URLs explicit --- chrome/content/zotero/xpcom/storage/zfs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/storage/zfs.js b/chrome/content/zotero/xpcom/storage/zfs.js index 305e2f1dc..6ae71a5bb 100644 --- a/chrome/content/zotero/xpcom/storage/zfs.js +++ b/chrome/content/zotero/xpcom/storage/zfs.js @@ -887,7 +887,7 @@ Zotero.Sync.Storage.Session.ZFS.prototype.purgeDeletedStorageFiles = function (c */ Zotero.Sync.Storage.Session.ZFS.prototype._getItemURI = function (item) { var uri = this.rootURI; - uri.spec += Zotero.URI.getItemPath(item) + '/file?auth=1'; + uri.spec += Zotero.URI.getItemPath(item) + '/file?auth=1&key=1'; return uri; }