Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cutls committed Apr 1, 2021
1 parent f80b8d0 commit 5cb1845
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/js/login/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ function getdataAdv(domain, at) {
}
var multi = localStorage.getItem('multi')
var obj = JSON.parse(multi)
var target = obj.lengtth
var target = obj.length
obj.push(add)
localStorage.setItem('name_' + target, json['display_name'])
localStorage.setItem('user_' + target, json['acct'])
Expand All @@ -309,6 +309,8 @@ async function refresh(target, loadskip) {
console.log('refresh access token')
at = await refreshPleromaAt(obj[target])
localStorage.setItem(`acct_${target}_at`, at)
obj[target].at = at
localStorage.setItem(`multi`, JSON.stringify(obj))
}
var start = 'https://' + obj[target].domain + '/api/v1/accounts/verify_credentials'
fetch(start, {
Expand Down Expand Up @@ -384,13 +386,13 @@ async function refreshPleromaAt(obj) {
'content-type': 'application/json'
},
body: JSON.stringify({
grant_type : 'refresh_token',
grant_type: 'refresh_token',
refresh_token: rt[0],
client_id: rt[1],
client_secret: rt[2]
})
})

const json = await promise.json()
if (json.access_token) {
return json.access_token
Expand Down

0 comments on commit 5cb1845

Please sign in to comment.