forked from AkkomaGang/akkoma
Fix with expression always matching
This commit is contained in:
parent
e572786dad
commit
97b35e00b0
1 changed files with 1 additions and 3 deletions
|
@ -1167,9 +1167,7 @@ def get_or_fetch_by_ap_id(ap_id) do
|
|||
if !is_nil(user) and !User.needs_update?(user) do
|
||||
{:ok, user}
|
||||
else
|
||||
user = fetch_by_ap_id(ap_id)
|
||||
|
||||
with %User{} = user do
|
||||
with %User{} = user <- fetch_by_ap_id(ap_id) do
|
||||
if Pleroma.Config.get([:fetch_initial_posts, :enabled]) do
|
||||
{:ok, _} = Task.start(__MODULE__, :fetch_initial_posts, [user])
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue