fix logout

This commit is contained in:
Florent 2025-04-09 18:19:49 +02:00
parent b01b7ea6ff
commit c11e527442
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "meshcore"
version = "0.4.1"
version = "0.4.2"
authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
]

View file

@ -350,7 +350,7 @@ class MeshCore:
async def send_logout(self, dst):
self.login_resp = asyncio.Future()
data = b"\x1d" + dst + pwd.encode("ascii")
data = b"\x1d" + dst
return await self.send(data)
async def send_statusreq(self, dst):