Fix order of args for remove_mute/2
This commit is contained in:
parent
f602813d31
commit
d27ad36ce4
4 changed files with 9 additions and 8 deletions
|
|
@ -14,7 +14,7 @@ defmodule Pleroma.Workers.MuteExpireWorker do
|
|||
def perform(%Job{
|
||||
args: %{"op" => "unmute_conversation", "user_id" => user_id, "activity_id" => activity_id}
|
||||
}) do
|
||||
Pleroma.Web.CommonAPI.remove_mute(user_id, activity_id)
|
||||
Pleroma.Web.CommonAPI.remove_mute(activity_id, user_id)
|
||||
:ok
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue