logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 4976a8b05f359cd32b37612727f81c89df85d651
parent: 7d86c0c53f6377119581ddc9e9dfe5c0937ffe01
Author: lambda <pleromagit@rogerbraun.net>
Date:   Sat,  8 Dec 2018 09:08:56 +0000

Merge branch 'fix/typo-relay-ex' into 'develop'

[#283] Mix Tasks: Fix a typo in relay.ex

See merge request pleroma/pleroma!522

Diffstat:

Mlib/mix/tasks/pleroma/relay.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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