mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
fix: EdgegapKcp StopHost() null reference exception (#3779)
see https://github.com/MirrorNetworking/Mirror/issues/3708
This commit is contained in:
parent
0aa8000454
commit
fafc10b639
@ -53,7 +53,7 @@ protected override void Awake()
|
|||||||
client = new EdgegapKcpClient(
|
client = new EdgegapKcpClient(
|
||||||
() => OnClientConnected.Invoke(),
|
() => OnClientConnected.Invoke(),
|
||||||
(message, channel) => OnClientDataReceived.Invoke(message, FromKcpChannel(channel)),
|
(message, channel) => OnClientDataReceived.Invoke(message, FromKcpChannel(channel)),
|
||||||
() => OnClientDisconnected.Invoke(),
|
() => OnClientDisconnected?.Invoke(), // may be null in StopHost(): https://github.com/MirrorNetworking/Mirror/issues/3708
|
||||||
(error, reason) => OnClientError.Invoke(ToTransportError(error), reason),
|
(error, reason) => OnClientError.Invoke(ToTransportError(error), reason),
|
||||||
config
|
config
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user