fix(vpaas): Fix billing counter auth (#7595)

pull/7596/head jitsi-meet_4976
vp8x8 5 years ago committed by GitHub
parent 4866ddc2ad
commit 74f7c4141f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      react/features/billing-counter/functions.js

@ -54,7 +54,7 @@ export async function sendCountRequest({ baseUrl, billingId, jwt, tenant }: {
}) {
const fullUrl = `${baseUrl}/${encodeURIComponent(tenant)}/${billingId}`;
const headers = {
'Authorization': `Bearer: ${jwt}`
'Authorization': `Bearer ${jwt}`
};
try {

Loading…
Cancel
Save