Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ END TEMPLATE-->

### Bugfixes

*None yet*
* Fixed an `InvalidOperationException` that could be thrown when reconnecting, caused by completing an already-finished status-change task.

### Other

Expand Down
2 changes: 1 addition & 1 deletion Robust.Shared/Network/NetManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ private void HandleStatusChanged(NetPeerData peer, NetIncomingMessage msg)
{
_awaitingStatusChange.Remove(sender);
resume.Item1.Dispose();
resume.Item2.SetResult(reason);
resume.Item2.TrySetResult(reason);
return;
}

Expand Down
Loading