Skip to content

Commit

Permalink
Fix Dojo authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroleak committed Dec 5, 2019
1 parent 01cb8a2 commit c9c224c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/com/samourai/wallet/api/backend/BackendApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ protected Map<String,String> computeHeaders() throws Exception {
Map<String,String> headers = new HashMap<String, String>();
if (oAuthManager != null) {
// add auth token
headers.put("Authorization<", "Bearer " + oAuthManager.computeAccessToken(this));
headers.put("Authorization", "Bearer " + oAuthManager.computeAccessToken(this));
}
return headers;
}
Expand Down

0 comments on commit c9c224c

Please sign in to comment.