Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
:/
  • Loading branch information
alicebob committed Mar 1, 2018
1 parent cd4d0b1 commit 8d29036
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions elm/Main.elm
Original file line number Diff line number Diff line change
Expand Up @@ -282,12 +282,16 @@ update msg model =
( model, connect model.wsURL )

WSOpen (Ok ws) ->
let model_ = { model | conn = Just ws }
let
model_ =
{ model | conn = Just ws }
in
( model_, Cmd.batch
( model_
, Cmd.batch
[ reloadFiles model_
, reloadArtists model_
] )
]
)

WSOpen (Err err) ->
( { model
Expand Down

0 comments on commit 8d29036

Please sign in to comment.