Connect to a certain game instead of index.

This commit is contained in:
2018-05-25 13:02:50 -07:00
parent e56560bcce
commit b0c9c5ec18
2 changed files with 5 additions and 2 deletions

2
Go.elm
View File

@@ -44,6 +44,6 @@ update msg model = case msg of
subscriptions : Model -> Sub Msg
subscriptions m =
WebSocket.listen m.sessionUrl Update
WebSocket.listen (wsUrl m) Update
main = Html.programWithFlags { init = init, update = update, subscriptions = subscriptions, view = view }