We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in my case whenever I fetch image.url() from collection FS, my url look like this, which not readable by react-native
http://localhost:3000/cfs/files/files/PmEazLruibjueMQpi?store=files&token=e…RoVG9rZW4iOiIwc2pSenl6dFRqeFc3d2JpTzhHNDB2Rk15UEV2QWZYMXBmeFlMNVBfWl9YIn0=
it is missing the file name, so I am hardcoding it like this to be able showing my image
const uri = file.url().substr(0, file.url().indexOf("?"))+"/"+file.name(); //add file.name() in the last url
so the correct image url will persist
http://localhost:3000/cfs/files/files/PmEazLruibjueMQpi/bg.png
Please fix this. Thanks
The text was updated successfully, but these errors were encountered:
Available in 1.0.0-beta33. Thanks !
Sorry, something went wrong.
No branches or pull requests
in my case whenever I fetch image.url() from collection FS, my url look like this, which not readable by react-native
it is missing the file name, so I am hardcoding it like this to be able showing my image
so the correct image url will persist
Please fix this. Thanks
The text was updated successfully, but these errors were encountered: