Skip to content

Commit c9c224c

Browse files
committed
Fix Dojo authentication
1 parent 01cb8a2 commit c9c224c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/com/samourai/wallet/api/backend/BackendApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ protected Map<String,String> computeHeaders() throws Exception {
150150
Map<String,String> headers = new HashMap<String, String>();
151151
if (oAuthManager != null) {
152152
// add auth token
153-
headers.put("Authorization<", "Bearer " + oAuthManager.computeAccessToken(this));
153+
headers.put("Authorization", "Bearer " + oAuthManager.computeAccessToken(this));
154154
}
155155
return headers;
156156
}

0 commit comments

Comments
 (0)