Merge branch 'issue-449-auto-token-fetch' into 'develop'

#449 - fix auth token fetch issue

Closes #449

See merge request pleroma/pleroma-fe!696
This commit is contained in:
Shpuld Shpludson 2019-03-21 16:12:33 +00:00
commit 66e60572bc

View file

@ -561,7 +561,12 @@ const fetchOAuthTokens = ({credentials}) => {
return fetch(url, {
headers: authHeaders(credentials)
}).then((data) => data.json())
}).then((data) => {
if (data.ok) {
return data.json()
}
throw new Error('Error fetching auth tokens', data)
})
}
const revokeOAuthToken = ({id, credentials}) => {