Search Issue Tracker
By Design
Votes
0
Found in
2018.3.0f2
Issue ID
1114364
Regression
No
UnityWebRequestMultimedia.GetAudioClip throws a 404 error if there is a "#" inside the given path
Steps to reproduce:
1. Open "WebRequestMultimedia" project
2. Go into play mode
Expected result: both paths should return the audio file and status code 200
Current result: path with symbol "#" returns status code 404
Reproduced on: 2018.3.2f1, 2019.1.0a14, 2019.2.0a1
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Keywords on Material Variants aren't automatically saved when changed on original Material through Shader Graph
- Light Probes get baked when calling LightProbes.Tetrahedralize
- Shadows flicker and cause visual artifacts when modifying a GameObject's bounds using Swizzle (Y Mask) and Sine Time nodes
- [WebGL] Frame rate drops by 5-20 fps when moving cursor or touch input in the Player
- Light bleeds when using box shaped spotlight with specific Emission Range values
Resolution Note:
The URIs in repro project are invalid and # is a special character in URI, so it has to be escaped if it's part of the path.
URI has to be file://{path with forward slashes}.
# character in URI separates fragment part (on the right) from the rest. If you want to access path containing #, you have to repsce it with %23 instead.
You can also try to pass the file system path to an Uri class constructor and take the value of AbsoluteUri property, maybe that will give you the correct file URI (haven't tried). Note, that UnityWebRequest accepts Uri instances too.