Merge pull request #25 from lbryio/auth-fix

fix: typo
This commit is contained in:
Sean Yesmunt 2019-02-05 09:18:27 -05:00 committed by GitHub
commit 60d8040189
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
dist/bundle.js vendored
View file

@ -804,7 +804,7 @@ 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

View file

@ -110,7 +110,7 @@ Lbryio.authenticate = () => {
Lbryio.getAuthToken()
.then(token => {
if (!token || token.length > 60) {
return [false];
return false;
}
// check that token works