Hello,
I noticed a weird behaviour when using the extractPublicId function, let's say we upload a file named TestÀ.png, we would get an url like this, with the special character encoded:
https://res.cloudinary.com/XXXXXX/image/upload/photos/TestA%C3%8C_XXXXX.png
Now if I check the public id in cloudinary I have photos/TestAÌ_XXXXX while with the extractPublicId function I get photos/TestA%C3%8C_XXXXX, so it's still encoded and different from the correct one.
This is not a big deal since I can decode the public ID pretty easily after I get it, but I was asking myself if it makes sense to include the decoding directly into the extract function, or if there is any downside on doing that.
Hello,
I noticed a weird behaviour when using the extractPublicId function, let's say we upload a file named
TestÀ.png, we would get an url like this, with the special character encoded:https://res.cloudinary.com/XXXXXX/image/upload/photos/TestA%C3%8C_XXXXX.pngNow if I check the public id in cloudinary I have
photos/TestAÌ_XXXXXwhile with the extractPublicId function I getphotos/TestA%C3%8C_XXXXX, so it's still encoded and different from the correct one.This is not a big deal since I can decode the public ID pretty easily after I get it, but I was asking myself if it makes sense to include the decoding directly into the extract function, or if there is any downside on doing that.