1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-30 02:40:53 +01:00

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

This commit is contained in:
Rin Toshaka 2018-12-08 08:30:34 +01:00
parent 8764f64690
commit 6c73136aec

View File

@ -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