Index at root

This commit is contained in:
Thomas Forgione 2020-10-05 11:54:35 +02:00
parent b6cdf308cb
commit 5b464f957a
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ decodePlaylists =
fetchPlaylists : (Result Http.Error (List Playlist) -> msg) -> Cmd msg
fetchPlaylists resultToMsg =
Http.get
{ url = "/index.json"
{ url = "index.json"
, expect = Http.expectJson resultToMsg decodePlaylists
}