diff options
author | Alex Auvolat <alex@adnab.me> | 2018-09-11 15:39:09 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-09-11 15:39:09 +0200 |
commit | a033c82a3c656a8f53feb60b5b149680771ac247 (patch) | |
tree | bc3cb9a6954aebcfd1a0c5f61d367e1083802c3e /shardweb/lib/shard_web/templates | |
parent | e92969db3f0a2093da16eb7db18c9db49225a719 (diff) | |
download | shard-a033c82a3c656a8f53feb60b5b149680771ac247.tar.gz shard-a033c82a3c656a8f53feb60b5b149680771ac247.zip |
Use DETS to store shard & peer list to disk
Diffstat (limited to 'shardweb/lib/shard_web/templates')
-rw-r--r-- | shardweb/lib/shard_web/templates/room/show.html.eex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shardweb/lib/shard_web/templates/room/show.html.eex b/shardweb/lib/shard_web/templates/room/show.html.eex index a689017..5f28cc5 100644 --- a/shardweb/lib/shard_web/templates/room/show.html.eex +++ b/shardweb/lib/shard_web/templates/room/show.html.eex @@ -1,7 +1,7 @@ <ul class="nav nav-tabs"> <%= for shard <- shard_list() do %> <%= case shard do %> - <%= {_, {:chat, name}, _} -> %> + <%= {_, %SApp.Chat.Manifest{channel: name}, _} -> %> <li class="<%= if name == @room do "active" else "" end %>"> <a href="<%= room_path(@conn, :show, name) %>">#<%= name %></a> </li> |