fix: prevent multiple user/me calls for new users
This commit is contained in:
parent
83c275da7a
commit
d970ba5372
2 changed files with 23 additions and 13 deletions
19
dist/bundle.js
vendored
19
dist/bundle.js
vendored
|
@ -798,18 +798,18 @@ Lbryio.authenticate = function () {
|
|||
Lbryio.authenticationPromise = new Promise(function (resolve, reject) {
|
||||
Lbryio.getAuthToken().then(function (token) {
|
||||
if (!token || token.length > 60) {
|
||||
return false;
|
||||
return [false];
|
||||
}
|
||||
|
||||
// check that token works
|
||||
return Lbryio.getCurrentUser().then(function () {
|
||||
return true;
|
||||
return Lbryio.getCurrentUser().then(function (user) {
|
||||
return user;
|
||||
}).catch(function () {
|
||||
return false;
|
||||
});
|
||||
}).then(function (isTokenValid) {
|
||||
if (isTokenValid) {
|
||||
return reject;
|
||||
}).then(function (user) {
|
||||
if (user) {
|
||||
return user;
|
||||
}
|
||||
|
||||
return _lbryRedux.Lbry.status().then(function (status) {
|
||||
|
@ -827,7 +827,12 @@ Lbryio.authenticate = function () {
|
|||
|
||||
return reject();
|
||||
});
|
||||
}).then(Lbryio.getCurrentUser).then(resolve, reject);
|
||||
}).then(function (user) {
|
||||
if (!user) {
|
||||
return Lbryio.getCurrentUser();
|
||||
}
|
||||
return user;
|
||||
}).then(resolve, reject);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -110,17 +110,17 @@ Lbryio.authenticate = () => {
|
|||
Lbryio.getAuthToken()
|
||||
.then(token => {
|
||||
if (!token || token.length > 60) {
|
||||
return false;
|
||||
return [false];
|
||||
}
|
||||
|
||||
// check that token works
|
||||
return Lbryio.getCurrentUser()
|
||||
.then(() => true)
|
||||
.then(user => user)
|
||||
.catch(() => false);
|
||||
})
|
||||
.then(isTokenValid => {
|
||||
if (isTokenValid) {
|
||||
return reject;
|
||||
.then(user => {
|
||||
if (user) {
|
||||
return user;
|
||||
}
|
||||
|
||||
return Lbry.status().then(status => {
|
||||
|
@ -137,7 +137,12 @@ Lbryio.authenticate = () => {
|
|||
return reject();
|
||||
});
|
||||
})
|
||||
.then(Lbryio.getCurrentUser)
|
||||
.then(user => {
|
||||
if (!user) {
|
||||
return Lbryio.getCurrentUser();
|
||||
}
|
||||
return user;
|
||||
})
|
||||
.then(resolve, reject);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue