Skip to content

Commit

Permalink
Merge pull request #651 from pacampbell/rpc_fix
Browse files Browse the repository at this point in the history
fix: Fix NPE in RPC code
  • Loading branch information
pacampbell authored Dec 6, 2024
2 parents df00070 + 14d6d49 commit a176bc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Arrowgene.Ddon.Rpc/Command/RpcCommandResult.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
namespace Arrowgene.Ddon.Rpc.Command
namespace Arrowgene.Ddon.Rpc.Command
{
public class RpcCommandResult
{
public RpcCommandResult(IRpcCommand command, bool success)
{
Command = command;
Success = success;
Message = string.Empty;
}

public IRpcCommand Command { get; }
Expand Down

0 comments on commit a176bc1

Please sign in to comment.