X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fuser.ex;h=bc7f2601fb725b71e124b782caa46107a20ae20d;hb=279e1ce556f063fa9725375622896f8f091be3c4;hp=f88c1240a5e0b3d8758d5ec6d70b775edee00095;hpb=b99eeb2bdf9224727b8acb2db596d1b851550e55;p=akkoma diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index f88c1240a..bc7f2601f 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -304,7 +304,7 @@ defmodule Pleroma.User do update_and_set_cache(cs) end - def get_notified_from_activity(%Activity{data: %{"to" => to}}) do + def get_notified_from_activity(%Activity{recipients: to}) do query = from u in User, where: u.ap_id in ^to, where: u.local == true @@ -312,7 +312,7 @@ defmodule Pleroma.User do Repo.all(query) end - def get_recipients_from_activity(%Activity{data: %{"to" => to}}) do + def get_recipients_from_activity(%Activity{recipients: to}) do query = from u in User, where: u.ap_id in ^to, or_where: fragment("? \\\?| ?", u.following, ^to)