daemon: Use the right queue to send messages.

This commit is contained in:
Damir Jelić 2019-05-09 10:54:22 +02:00
parent 1f548f3a7e
commit 1d2d0d6bba

View File

@ -117,7 +117,7 @@ class ProxyDaemon:
async def send_info(self, string):
"""Send a info message to the UI thread."""
message = InfoMessage(string)
await self.queue.put(message)
await self.send_queue.put(message)
async def receive_message(self, message):
client = self.pan_clients.get(message.pan_user)