aboutsummaryrefslogtreecommitdiff
path: root/lib/mix
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-02-25 16:21:48 +0300
committerrinpatch <rinpatch@sdf.org>2020-03-15 16:55:20 +0300
commit7cf708307644dad42412761c42c75da15dab7cc9 (patch)
treeca48be13a4bd00defb60d01b6638979ed773da21 /lib/mix
parent963df689b949e14b44a8e3717e8169f5cf195fa7 (diff)
downloadpleroma-7cf708307644dad42412761c42c75da15dab7cc9.tar.gz
relay list shows hosts without accepted follow
Diffstat (limited to 'lib/mix')
-rw-r--r--lib/mix/tasks/pleroma/relay.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mix/tasks/pleroma/relay.ex b/lib/mix/tasks/pleroma/relay.ex
index c6ca888d4..c3312507e 100644
--- a/lib/mix/tasks/pleroma/relay.ex
+++ b/lib/mix/tasks/pleroma/relay.ex
@@ -35,7 +35,7 @@ defmodule Mix.Tasks.Pleroma.Relay do
def run(["list"]) do
start_pleroma()
- with {:ok, list} <- Relay.list() do
+ with {:ok, list} <- Relay.list(true) do
list |> Enum.each(&shell_info(&1))
else
{:error, e} -> shell_error("Error while fetching relay subscription list: #{inspect(e)}")