s/get_by_ap_id/get_cached_by_ap_id/
This commit is contained in:
parent
6e7f91bf8f
commit
e2c4013c88
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ defmodule Pleroma.Web.ActivityPub.MRF.RejectNonPublic do
|
|||
@impl true
|
||||
def filter(object) do
|
||||
if object["type"] == "Create" do
|
||||
user = User.get_by_ap_id(object["actor"])
|
||||
user = User.get_cached_by_ap_id(object["actor"])
|
||||
public = "https://www.w3.org/ns/activitystreams#Public"
|
||||
|
||||
# Determine visibility
|
||||
|
|
Loading…
Reference in a new issue