1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-17 07:36:32 +09:00

Modified UPnP response handling

This commit is contained in:
lidgren
2012-11-15 08:29:31 +00:00
parent b6d2111380
commit 44971f0afc
2 changed files with 6 additions and 2 deletions

View File

@@ -114,7 +114,11 @@ namespace Lidgren.Network
m_discoveryComplete.Set();
#if !DEBUG
}
catch { return; }
catch
{
m_peer.LogVerbose("Exception ignored trying to parse UPnP XML response");
return;
}
#endif
}