Whoops, correctly call MpdStateListener.start()

This commit is contained in:
Danielle McLean 2023-12-06 11:54:28 +11:00
parent 9a05d33177
commit eb7509a4e0
Signed by: 00dani
GPG key ID: 52C059C3B22A753E

View file

@ -16,7 +16,7 @@ async def listen() -> None:
listener = MpdStateListener()
now_playing = CocoaNowPlaying(listener)
await listener.start(hostname=host, port=port, password=password)
await listener.start(host=host, port=port, password=password)
await listener.loop(now_playing)