aboutsummaryrefslogtreecommitdiffstats
path: root/jsaccess/jsa/jsa.js
diff options
context:
space:
mode:
Diffstat (limited to 'jsaccess/jsa/jsa.js')
-rw-r--r--jsaccess/jsa/jsa.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsaccess/jsa/jsa.js b/jsaccess/jsa/jsa.js
index 138ed84..259899c 100644
--- a/jsaccess/jsa/jsa.js
+++ b/jsaccess/jsa/jsa.js
@@ -36,7 +36,7 @@ function jsagetlist() {
_status("Getting file list ...");
listreq = $.ajax({
- url: 'files/' + hash + '/index.txt',
+ url: 'store/' + hash + '/index.txt',
beforeSend: function ( xhr ) {
xhr.overrideMimeType("application/base64");
},
@@ -88,7 +88,7 @@ function _dl(file, pass) {
var RMD160 = new Hashes.RMD160;
var dirhash = RMD160.hex(pass);
- var path = 'files/' + dirhash + '/' + RMD160.hex(dirhash + file);
+ var path = 'store/' + dirhash + '/' + RMD160.hex(dirhash + file);
_status("Downloading \""+file+"\" ...");
dlreq = $.ajax({