Merge branch 'features/null_bearer2' into 'develop'

Fix authorization header when no access token

See merge request gab/social/gab-social!58
This commit is contained in:
Free Speech Forever 2021-02-10 03:34:35 +00:00
commit c14fc2fa9d

@ -40,12 +40,13 @@ const notify = options =>
const fetchFromApi = (path, method, accessToken) => {
const url = (new URL(path, self.location)).href;
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json',
}
if (!accessToken) { delete headers['Authorization'] }
return fetch(url, {
headers: {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json',
},
headers: headers,
method: method,
credentials: 'include',
}).then(res => {