Hello,
In the Editor:
I have come across another strange issue and think it may be a bug. My Addressables are stored on Azure Blob as private. I need to use a Shared Access Key Signature to access the json file for the addressables. Everything works fine when I set the storage to public, but when I set it to private and have the signature at the end of the remote catalog link when specifying the catalog in Addressables.LoadContentCatalogAsync it splits that string at the symbol “:” and tries to save the hash as everything that comes after the last “:” in the signature which is wrong. So the next time I go to run the app it breaks because that first has file been saved as just "“file” with no type and its file name is everything after the last “:” instead of hash type and just the catalog name.
The signed assets when private using Addressables.ResourceManager.InternalIdTransformFunc work just fine privately.
It’s as if when saving the Catalog files locally it is splitting the string with that symbol which is also in the SAS Signature cause it not to name it as catalog_10.10.10.10.hash or .json.
device:
Everything seems to work on the device fine. It seems to only do this when testing in the editor. Why is it trying to save this file diffferently in editor? Why does save the file only with all string text after “:” in the last instace of that symbol? It makes it more difficult to test because I have to set the access to the Azure storage to public and remove the SAS. Then it downloads just fine. But I have to do this everytime i want to check in the editor or build to the dievice test and if it fails trial and error.
Any ideas?