Search Issue Tracker
Fixed in 2018.1.X
Fixed in 2017.1.X, 2017.2.X, 2017.3.X
Votes
0
Found in
2017.2.0f3
Issue ID
961465
Regression
No
[UnityWebRequest] Unity WebGL application served from a URL with a non-standard port produces wrong URL
How to reproduce:
1. Create new project file and switch Platform to WebGL
2. Create and assign to GameObject new c# code:
public class NewBehaviourScript : MonoBehaviour {
void Start () {
using(var uwr = new UnityWebRequest("/play/something"))
{
Debug.Log("Formatted url: " + uwr.url);
}
}
}
3. Press Build & Run
Expected result: Formatted url: http://localhost:<port number>/play/something
Actual result: Formatted url: http://localhost/play/something
Reproduced with: 5.6.4p2, 2017.1.2p3, 2017.2.0p2, 2017.3.0b9, 2018.1.0a4
Workaround:
using(var uwr = new UnityWebRequest(Application.absoluteURL + "relative/url"))
{
Debug.Log("Formatted url: " + uwr.url);
}
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- The Editor becomes unresponsive and memory allocation errors are spammed in the Console when Generating Lightning
- Crash on BatchApplyPropertiesFromSourceAssetDB when opening a specific project
- Scene view Camera cannot be moved with WASD/QE keys when the Right Mouse Button is held down and the Mouse is not moved
- Crash when calling default interface method from virtual method with same name
- [Android] Unity does not include the ".aab" extension for an AppBundle when it is built via script with the buildPlayerOptions.locationPathName = "AppName.apk" and EditorUserBuildSettings.buildAppBundle = true
Add comment