From 4acfc0911a8864c517cb23712c76cddcbc561e69 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Fri, 25 May 2018 15:23:06 -0700 Subject: [PATCH] Remove accidentally left over toString call. --- Go/Ws.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Go/Ws.elm b/Go/Ws.elm index 2319bcf..6495279 100644 --- a/Go/Ws.elm +++ b/Go/Ws.elm @@ -3,7 +3,7 @@ import Go.Types exposing (..) import WebSocket wsUrl : Model -> String -wsUrl m = (m.sessionUrl ++ "/game/" ++ toString m.sessionId) +wsUrl m = (m.sessionUrl ++ "/game/" ++ m.sessionId) encodeCell : Cell -> String encodeCell ((x, y), c) = "place "