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] [project]
name = "meshcore" name = "meshcore"
version = "0.4.1" version = "0.4.2"
authors = [ authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" }, { name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
] ]

View File

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