Keycloak sso #7203

Closed
jessopb wants to merge 4 commits from keycloak-sso into master
Showing only changes of commit 2f4a6d5f47 - Show all commits

View file

@ -194,7 +194,7 @@ const populateAuthTokenHeader = () => {
}
const tokens = getTokens();
if (tokens.access_token) {
Lbry.setApiHeader('Authorization', 'Bearer ' + tokens.access_token);
Lbry.setApiHeader('Authorization', `Bearer ${tokens.access_token}`);
} else {
Lbry.setApiHeader(X_LBRY_AUTH_TOKEN, tokens.auth_token);
}