Skip to content

Commit

Permalink
fix(http service): change auth header (#1164)
Browse files Browse the repository at this point in the history
Co-authored-by: Overzunov <overzunov@lohika.com>
  • Loading branch information
VERZUOL1 and Overzunov authored Jun 9, 2022
1 parent f539190 commit 3c3f002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/HttpService/HttpService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ export class HttpService {
]);

request.headers = {
Authorization: `Bearer ${buff.toString('base64')}`,
'X-Authorization': `Bearer ${buff.toString('base64')}`,
};
break;
}
Expand Down

0 comments on commit 3c3f002

Please sign in to comment.