diff options
author | Alex Auvolat <alex@adnab.me> | 2018-08-27 13:04:51 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-08-27 13:04:51 +0200 |
commit | 6cc81b55f2466cd7526f47da6980e3eb47041457 (patch) | |
tree | bb0d7a917ec31443ca5763f9d1386f94e86d8c89 /lib/cli | |
parent | c1dad415d42d0991f3c549c159d85b6146fb0768 (diff) | |
download | shard-6cc81b55f2466cd7526f47da6980e3eb47041457.tar.gz shard-6cc81b55f2466cd7526f47da6980e3eb47041457.zip |
Disable web interface
Diffstat (limited to 'lib/cli')
-rw-r--r-- | lib/cli/cli.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cli/cli.ex b/lib/cli/cli.ex index 3f83cb1..c281d57 100644 --- a/lib/cli/cli.ex +++ b/lib/cli/cli.ex @@ -47,7 +47,7 @@ defmodule SCLI do pid end - defp handle_command(pid, ["join", qchan]) do + defp handle_command(_pid, ["join", qchan]) do list = for {_chid, manifest, chpid} <- :ets.tab2list(:shard_db), {:chat, chan} = manifest, do: {chan, chpid} |