Skip to content

Commit

Permalink
Fix IsStub in ExtWire
Browse files Browse the repository at this point in the history
It doesn't have this property, it must use the value of the real wire
  • Loading branch information
ulex committed Jun 20, 2023
1 parent d12a171 commit 797f70c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rd-net/RdFramework/Base/RdExtBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public QueueItem(RdId id, byte[] bytes, KeyValuePair<RdContextBase, object>[] st

private readonly Queue<QueueItem> mySendQ = new Queue<QueueItem>();

public bool IsStub => false;
public bool IsStub => RealWire.IsStub;

public ProtocolContexts Contexts
{
Expand Down

0 comments on commit 797f70c

Please sign in to comment.