mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-03 13:58:41 +00:00
Consider a case when inbox is nil
This commit is contained in:
parent
03e54aaba9
commit
6ad4acea50
1 changed files with 12 additions and 9 deletions
|
@ -159,9 +159,12 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
|
|||
end
|
||||
|
||||
defp should_federate?(inbox, public) do
|
||||
if public do
|
||||
cond do
|
||||
inbox == nil ->
|
||||
false
|
||||
public ->
|
||||
true
|
||||
else
|
||||
true ->
|
||||
%{host: host} = URI.parse(inbox)
|
||||
|
||||
quarantined_instances =
|
||||
|
|
Loading…
Reference in a new issue