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
- Crash on DynamicHeapAllocator::CreateTLSFBlock when opening a specific project
- Scene flickers when using Mesh Output with SpriteLit Shader in 2D project
- “Cache Management” text is misaligned in Preferences > Package Manager
- [macOS] network permission shows the name of previously closed app when different app requests network access
- Delta value returned by mouse movementsMonitor is different when changing Screen Resolution
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.