fixes the issue where list_files_all returns the files and sub-directories in a directory reference instead of just the file names. This may affect things if the reference is just a single file... presumably people will have to call response$items instead of just response
Should also note that changing the storage.js files doesn't really do much.. assuming I need to use packer. Editing the core.js file in the inst/ folder did the trick but I think that's because the packed core.js contains duplicate code for storage.js while the core.js file in the srcjs/ folder does not.
fixes the issue where
list_files_all
returns the files and sub-directories in a directory reference instead of just the file names. This may affect things if the reference is just a single file... presumably people will have to callresponse$items
instead of justresponse
Should also note that changing the
storage.js
files doesn't really do much.. assuming I need to use packer. Editing thecore.js
file in theinst/
folder did the trick but I think that's because the packedcore.js
contains duplicate code forstorage.js
while thecore.js
file in thesrcjs/
folder does not.