From 94fd8007c480feaebff547ab29e7e9b9eecb77b1 Mon Sep 17 00:00:00 2001 From: kballou Date: Mon, 31 Oct 2016 03:50:00 -0600 Subject: Append new line before sending the reversed line --- lib/octochat/servers/echo.ex | 1 + mix.exs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/octochat/servers/echo.ex b/lib/octochat/servers/echo.ex index ff25869..2945c47 100644 --- a/lib/octochat/servers/echo.ex +++ b/lib/octochat/servers/echo.ex @@ -18,6 +18,7 @@ defmodule Octochat.Echo do msg |> String.trim() |> String.reverse() + |> (fn (line) -> line <> "\n" end).() |> write_line!(socket) {:noreply, state} end diff --git a/mix.exs b/mix.exs index da21570..f357e0b 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Octochat.Mixfile do [app: :octochat, description: "Demo Application for How Swapping Code", package: package(), - version: "0.3.2", + version: "0.3.3", elixir: "~> 1.3", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, -- cgit v1.2.1