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
9cafb67f
Commit
9cafb67f
authored
May 06, 2017
by
lain
Browse files
Follow redirects when fetching activities.
This can happen for site that started as http and now switched to https.
parent
22ddddce
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/ostatus/ostatus.ex
View file @
9cafb67f
...
...
@@ -274,9 +274,9 @@ def get_atom_url(body) do
end
def
fetch_activity_from_html_url
(
url
)
do
with
{
:ok
,
%{
body:
body
}}
<-
@httpoison
.
get
(
url
),
with
{
:ok
,
%{
body:
body
}}
<-
@httpoison
.
get
(
url
,
[],
follow_redirect:
true
),
{
:ok
,
atom_url
}
<-
get_atom_url
(
body
),
{
:ok
,
%{
status_code:
code
,
body:
body
}}
when
code
in
200
..
299
<-
@httpoison
.
get
(
atom_url
)
do
{
:ok
,
%{
status_code:
code
,
body:
body
}}
when
code
in
200
..
299
<-
@httpoison
.
get
(
atom_url
,
[],
follow_redirect:
true
)
do
handle_incoming
(
body
)
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