Skip to content

Commit 36f940b

Browse files
committed
Merge pull request #2 from dtsolis/fix-1
Fix issue #1
2 parents 98f1a4c + 1fe4f85 commit 36f940b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ FileSystemAdapter.prototype.getFileData = function(filename) {
6161
}
6262

6363
FileSystemAdapter.prototype.getFileLocation = function(config, filename) {
64-
return (config.mount + '/' + this._getLocalFilePath(filename));
64+
return config.mount + '/files/' + config.applicationId + '/' + encodeURIComponent(filename);
6565
}
6666

6767
/*

0 commit comments

Comments
 (0)