aboutsummaryrefslogtreecommitdiff
path: root/lib/mix/tasks/pleroma/relay.ex
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-07-09 19:13:16 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-07-09 19:13:16 +0300
commit79707e879d3af359be9e1f6ac10717cc9cb72b2c (patch)
tree0e04a7232f00dfb1f83198e6c7ab3479aecc6d60 /lib/mix/tasks/pleroma/relay.ex
parentd5fcec8315a5f48d94a083b38abcc615834dc532 (diff)
downloadpleroma-79707e879d3af359be9e1f6ac10717cc9cb72b2c.tar.gz
cleap up
Diffstat (limited to 'lib/mix/tasks/pleroma/relay.ex')
-rw-r--r--lib/mix/tasks/pleroma/relay.ex3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/mix/tasks/pleroma/relay.ex b/lib/mix/tasks/pleroma/relay.ex
index b67d256c3..c3312507e 100644
--- a/lib/mix/tasks/pleroma/relay.ex
+++ b/lib/mix/tasks/pleroma/relay.ex
@@ -12,7 +12,6 @@ defmodule Mix.Tasks.Pleroma.Relay do
def run(["follow", target]) do
start_pleroma()
- Application.ensure_all_started(:flake_id)
with {:ok, _activity} <- Relay.follow(target) do
# put this task to sleep to allow the genserver to push out the messages
@@ -24,7 +23,6 @@ defmodule Mix.Tasks.Pleroma.Relay do
def run(["unfollow", target]) do
start_pleroma()
- Application.ensure_all_started(:flake_id)
with {:ok, _activity} <- Relay.unfollow(target) do
# put this task to sleep to allow the genserver to push out the messages
@@ -36,7 +34,6 @@ defmodule Mix.Tasks.Pleroma.Relay do
def run(["list"]) do
start_pleroma()
- Application.ensure_all_started(:flake_id)
with {:ok, list} <- Relay.list(true) do
list |> Enum.each(&shell_info(&1))