logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: e74e7257508cb46dd0ef35685e5a4e2553f71619
parent: 9fedcab9886e9b0df674f638de555f6520efcd2c
Author: lambda <pleromagit@rogerbraun.net>
Date:   Mon,  6 Nov 2017 22:37:00 +0000

Merge branch 'fix/authenticated-remote-profile-fetching' into 'develop'

Send credentials when fetching remote profile.

See merge request pleroma/pleroma-fe!125

Diffstat:

Msrc/services/api/api.service.js3++-
Msrc/services/backend_interactor_service/backend_interactor_service.js2+-
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js @@ -160,9 +160,10 @@ const authHeaders = (user) => { } } -const externalProfile = (profileUrl) => { +const externalProfile = ({profileUrl, credentials}) => { let url = `${EXTERNAL_PROFILE_URL}?profileurl=${profileUrl}` return fetch(url, { + headers: authHeaders(credentials), method: 'GET' }).then((data) => data.json()) } diff --git a/src/services/backend_interactor_service/backend_interactor_service.js b/src/services/backend_interactor_service/backend_interactor_service.js @@ -46,7 +46,7 @@ const backendInteractorService = (credentials) => { const updateBanner = ({params}) => apiService.updateBanner({credentials, params}) const updateProfile = ({params}) => apiService.updateProfile({credentials, params}) - const externalProfile = (profileUrl) => apiService.externalProfile(profileUrl) + const externalProfile = (profileUrl) => apiService.externalProfile({profileUrl, credentials}) const backendInteractorServiceInstance = { fetchStatus,