Fix beacon data not being transmitted

This commit is contained in:
jacob.eva 2024-06-08 10:39:54 +01:00
parent 558b1c21a2
commit ef9f87b559
No known key found for this signature in database
GPG Key ID: 0B92E083BBCCAA1E

View File

@ -1137,8 +1137,8 @@ class RNodeSubInterface(Interface):
else: else:
if self.parent_interface.first_tx == None: if self.parent_interface.first_tx == None:
self.parent_interface.first_tx = time.time() self.parent_interface.first_tx = time.time()
self.txb += len(data) self.txb += len(data)
self.parent_interface.processOutgoing(data, self) self.parent_interface.processOutgoing(data, self)
else: else:
self.queue(data) self.queue(data)