From 797f70c7ed656d5309c5d1d0603d46e21ba6d37c Mon Sep 17 00:00:00 2001 From: Alexander Ulitin Date: Tue, 20 Jun 2023 12:07:33 +0200 Subject: [PATCH] Fix IsStub in ExtWire It doesn't have this property, it must use the value of the real wire --- rd-net/RdFramework/Base/RdExtBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rd-net/RdFramework/Base/RdExtBase.cs b/rd-net/RdFramework/Base/RdExtBase.cs index 9c068695d..ceb87b6cb 100644 --- a/rd-net/RdFramework/Base/RdExtBase.cs +++ b/rd-net/RdFramework/Base/RdExtBase.cs @@ -189,7 +189,7 @@ public QueueItem(RdId id, byte[] bytes, KeyValuePair[] st private readonly Queue mySendQ = new Queue(); - public bool IsStub => false; + public bool IsStub => RealWire.IsStub; public ProtocolContexts Contexts {