BananaHemic / Mumble-Unity

Performant Mumble Client For Unity3D
MIT License
77 stars 29 forks source link

Localhost issue #30

Closed ArnoBen closed 5 years ago

ArnoBen commented 5 years ago

It's rather a hard fix, I simply added the following line to MumbleTester.cs : if(HostName.ToLower() == "localhost") HostName = "127.0.0.1";

It works fine, although the best solution would be to fix the fact that the adress "0.0.0.1" is automatically selected when "localhost" is written in the HostName field in the inspector.

BananaHemic commented 5 years ago

Thanks for the PR! Is there any chance that we could put that check in MumbleClient.cs?

ArnoBen commented 5 years ago

Sure thing !