Remove accidentally left over toString call.

This commit is contained in:
Danila Fedorin 2018-05-25 15:23:06 -07:00
parent 6968a732d8
commit 4acfc0911a
1 changed files with 1 additions and 1 deletions

View File

@ -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 "