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
I fixed this with a simple .replace for my cases, but it definitely needs a more stable solution.
.replace
Thanks so much for the module, super useful 👍
The text was updated successfully, but these errors were encountered:
Hmm.. can you describe which characters?
Sorry, something went wrong.
The period and percent characters, . & % needed to be replaced in my image path before caching would work. I used:
.
%
let safeCacheKey = cacheKey.replace(/\//g, '.').replace(/%/, '.');
I am using firebase storage but got error as well because of url format
https://firebasestorage.googleapis.com/v0/b/abc.appspot.com/o/images%2Ftemp?alt=media&token=9f605564-9daa-46df-96c9-ea3ddf432b79
No branches or pull requests
I fixed this with a simple
.replace
for my cases, but it definitely needs a more stable solution.Thanks so much for the module, super useful 👍
The text was updated successfully, but these errors were encountered: