From 6db7d36c265b05e37d753b91e6b767c136405ecf Mon Sep 17 00:00:00 2001 From: Daniel Pupius Date: Mon, 7 Oct 2024 11:53:29 -0700 Subject: [PATCH] Fix typo --- check-mate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check-mate.py b/check-mate.py index 3ab902d..2cd4418 100644 --- a/check-mate.py +++ b/check-mate.py @@ -92,9 +92,9 @@ def sendProbe(self): self.logger.info("Sending probe...") # TODO: See if this is enough. Might want to actually send a test packet # though that could potentially add noise to the network. - self.iface.setStatus("probing") + self.setStatus("probing") self.iface.sendHeartbeat() - self.iface.setStatus("active", True) + self.setStatus("active", True) # self.iface.sendData("probe", portNum=portnums_pb2.PortNum.PRIVATE_APP) def setStatus(self, status, ping=False):