diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-07-19 19:06:49 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-07-19 19:06:49 +0200 |
commit | 140f72725dd3d2840b356107e24542ba2896e4e1 (patch) | |
tree | 74f17d7d4153205d6e45d89c72a7807e5092cb39 /lib/pleroma/web/twitter_api/twitter_api.ex | |
parent | 396c32a6da5d028675b2d3c4154ac9045596ad31 (diff) | |
download | pleroma-140f72725dd3d2840b356107e24542ba2896e4e1.tar.gz |
Use follower address in user entry.
Diffstat (limited to 'lib/pleroma/web/twitter_api/twitter_api.ex')
-rw-r--r-- | lib/pleroma/web/twitter_api/twitter_api.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/twitter_api/twitter_api.ex b/lib/pleroma/web/twitter_api/twitter_api.ex index b5b59eb4b..04c1d914c 100644 --- a/lib/pleroma/web/twitter_api/twitter_api.ex +++ b/lib/pleroma/web/twitter_api/twitter_api.ex @@ -12,7 +12,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do def to_for_user_and_mentions(user, mentions, inReplyTo) do default_to = [ - User.ap_followers(user), + user.follower_address, "https://www.w3.org/ns/activitystreams#Public" ] |