Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
947ba649
Commit
947ba649
authored
Feb 21, 2018
by
lain
Browse files
More TwAPI fixes.
parent
92021fd0
Pipeline
#782
failed with stage
in 2 minutes and 17 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/twitter_api/twitter_api.ex
View file @
947ba649
...
...
@@ -289,7 +289,7 @@ defp activity_to_status(activity, opts) 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment