Make key-based URLs explicit

This commit is contained in:
Dan Stillman 2009-11-28 00:31:55 +00:00
parent 020cf3ee95
commit 3e7f1f0608

View File

@ -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;
}