mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
fix: TelepathyTransport.ToString UWP exception
This commit is contained in:
parent
c4a18cd8a4
commit
8a190bfd17
@ -146,7 +146,15 @@ public override string ToString()
|
||||
{
|
||||
if (server.Active && server.listener != null)
|
||||
{
|
||||
return "Telepathy Server port: " + server.listener.LocalEndpoint;
|
||||
// printing server.listener.LocalEndpoint causes an Exception
|
||||
// in UWP + Unity 2019:
|
||||
// Exception thrown at 0x00007FF9755DA388 in UWF.exe:
|
||||
// Microsoft C++ exception: Il2CppExceptionWrapper at memory
|
||||
// location 0x000000E15A0FCDD0. SocketException: An address
|
||||
// incompatible with the requested protocol was used at
|
||||
// System.Net.Sockets.Socket.get_LocalEndPoint ()
|
||||
// so let's use the regular port instead.
|
||||
return "Telepathy Server port: " + port;
|
||||
}
|
||||
else if (client.Connecting || client.Connected)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user