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
932e0e87
Commit
932e0e87
authored
May 11, 2017
by
lain
Browse files
More debugging code.
parent
2154f729
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/ostatus/ostatus.ex
View file @
932e0e87
...
...
@@ -81,13 +81,16 @@ def make_favorite(entry, doc, favorited_activity) do
end
def
get_or_try_fetching
(
entry
)
do
Logger
.
debug
(
"Trying to fetch entry"
)
with
id
when
not
is_nil
(
id
)
<-
string_from_xpath
(
"//activity:object[1]/id"
,
entry
),
%
Activity
{}
=
activity
<-
Activity
.
get_create_activity_by_object_ap_id
(
id
)
do
{
:ok
,
activity
}
else
_e
->
Logger
.
debug
(
"Couldn't get, will try to fetch"
)
with
href
when
not
is_nil
(
href
)
<-
string_from_xpath
(
"//activity:object[1]/link[@type=
\"
text/html
\"
]/@href"
,
entry
),
{
:ok
,
[
favorited_activity
]}
<-
fetch_activity_from_html_url
(
href
)
do
{
:ok
,
favorited_activity
}
else
e
->
Logger
.
debug
(
"Couldn't find href:
#{
inspect
(
e
)
}
"
)
end
end
end
...
...
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