From 784eb8426c5c788504732f3482f8c5af65f06c27 Mon Sep 17 00:00:00 2001
From: eal <eal@waifu.club>
Date: Tue, 7 Nov 2017 00:20:51 +0200
Subject: [PATCH] Send credentials when fetching remote profile.

---
 src/services/api/api.service.js                                | 3 ++-
 .../backend_interactor_service/backend_interactor_service.js   | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js
index 28f8936b..a1c6b657 100644
--- 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
index 9a0910dd..a99ea38a 100644
--- 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,