www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 3e7f1f0608573adb360186f5b65ac41ac4209ab2
parent 020cf3ee955d9b4f6815b0b18fba29fa4d88f683
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sat, 28 Nov 2009 00:31:55 +0000

Make key-based URLs explicit


Diffstat:
Mchrome/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 @@ -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; }