Skip to content

Commit

Permalink
fix: Don't throw exception getting address
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpach committed Oct 30, 2019
1 parent 6cbef06 commit 7df3ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Mirror/Runtime/NetworkConnectionToServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Mirror
{
public class NetworkConnectionToServer : NetworkConnection
{
public override string address => throw new NotImplementedException();
public override string address => "";

internal override bool Send(ArraySegment<byte> segment, int channelId = Channels.DefaultReliable)
{
Expand Down

0 comments on commit 7df3ce3

Please sign in to comment.