We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 799942f commit 7a4f615Copy full SHA for 7a4f615
RiptideNetworking/RiptideNetworking/Client.cs
@@ -40,7 +40,10 @@ public override int TimeoutTime
40
set
41
{
42
defaultTimeout = value;
43
- connection.TimeoutTime = defaultTimeout;
+ if (connection != null)
44
+ {
45
+ connection.TimeoutTime = defaultTimeout;
46
+ }
47
}
48
49
/// <summary>Whether or not the client is currently <i>not</i> trying to connect, pending, nor actively connected.</summary>
0 commit comments