Network Programming in Elixir and Erlang:Designing a Simple Chat Protocol broadcast message (page 39)

You have the client’s username already in the connection’s state. I added this to the para:

When a client sends a broadcast message to the server, `from_username` must be an empty string---the connection is already storing the client's username, so including it would be redundant.

Thank you!