diff options
author | Rin Toshaka <rinpatch@sdf.org> | 2018-12-08 08:30:34 +0100 |
---|---|---|
committer | Rin Toshaka <rinpatch@sdf.org> | 2018-12-08 08:30:34 +0100 |
commit | 6c73136aeca26357b405058e338d8020dc0dfe4e (patch) | |
tree | cd17e5c9278f31c7ffcd4c9e69d8ce4838ec3c6e | |
parent | 8764f646900f577add5cc606b433870633b2e4d5 (diff) | |
download | pleroma-6c73136aeca26357b405058e338d8020dc0dfe4e.tar.gz |
[#283] Mix Tasks: Fix a typo in relay.ex
-rw-r--r-- | lib/mix/tasks/pleroma/relay.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mix/tasks/pleroma/relay.ex b/lib/mix/tasks/pleroma/relay.ex index 2502923af..f4b7ff6a0 100644 --- a/lib/mix/tasks/pleroma/relay.ex +++ b/lib/mix/tasks/pleroma/relay.ex @@ -33,7 +33,7 @@ defmodule Mix.Tasks.Pleroma.Relay do def run(["unfollow", target]) do Common.start_pleroma() - with {:ok, activity} <- Relay.follow(target) do + with {:ok, activity} <- Relay.unfollow(target) do # put this task to sleep to allow the genserver to push out the messages :timer.sleep(500) else |