Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
fix(authUtils): quote string
Browse files Browse the repository at this point in the history
  • Loading branch information
doktordirk committed Apr 9, 2016
1 parent a990bae commit ab4756f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/authUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class authUtils {
}

static addTokenPrefix(prefix = '', tokenNme) {
return prefix ? prefix + _ + tokenNme : tokenNme;
return prefix ? prefix + '_' + tokenNme : tokenNme;
}

static joinUrl(baseUrl = '', url = '') {
Expand Down

0 comments on commit ab4756f

Please sign in to comment.