Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Krande committed Sep 29, 2024
1 parent 874e8ac commit f70da40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ada/comms/wsock_client_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async def receive(self, timeout=None) -> MessageDC:
message = await self.websocket.recv()
msg = deserialize_root_message(message)

if msg.server_reply.error is not None:
if msg.server_reply and msg.server_reply.error is not None:
raise ServerError(msg.server_reply.error.message)

return msg
Expand Down
Binary file modified src/ada/visit/rendering/resources/index.zip
Binary file not shown.

0 comments on commit f70da40

Please sign in to comment.