Add banner image to user json.
[akkoma] / lib / pleroma / web / twitter_api / twitter_api.ex
index 80c4ec1929b090a44595985f23f019429cc73acd..ccd79625cdb4dc9d96d6ef48a7ee8a1a4c59340a 100644 (file)
@@ -289,7 +289,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
     actor = get_in(activity.data, ["actor"])
     user = User.get_cached_by_ap_id(actor)
     # mentioned_users = Repo.all(from user in User, where: user.ap_id in ^activity.data["to"])
-    mentioned_users = Enum.map(activity.data["to"] || [], fn (ap_id) ->
+    mentioned_users = Enum.map(activity.recipients || [], fn (ap_id) ->
       if ap_id do
         User.get_cached_by_ap_id(ap_id)
       else