Skip to content

Commit

Permalink
fixing contact acceptance error
Browse files Browse the repository at this point in the history
  • Loading branch information
balzack committed Jun 20, 2024
1 parent f700113 commit 76512cf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/mobile/src/api/setCardStatus.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,18 @@ export async function setCardConnecting(server, token, cardId) {
}

export async function setCardConnected(server, token, cardId, access, view, article, channel, profile) {
const insecure = /^(?!0)(?!.*\.$)((1?\d?\d|25[0-5]|2[0-4]\d)(\.|:\d+$|$)){4}$/.test(server);
const protocol = insecure ? 'http' : 'https';

let card = await fetchWithTimeout(`${protocol}://${server}/contact/cards/${cardId}/status?agent=${token}&token=${access}&viewRevision=${view}&articleRevision=${article}&channelRevision=${channel}&profileRevision=${profile}`, { method: 'PUT', body: JSON.stringify('connected') } );
checkResponse(card);
return await card.json();
}

export async function setCardConfirmed(server, token, cardId) {
const insecure = /^(?!0)(?!.*\.$)((1?\d?\d|25[0-5]|2[0-4]\d)(\.|:\d+$|$)){4}$/.test(server);
const protocol = insecure ? 'http' : 'https';

let card = await fetchWithTimeout(`${protocol}://${server}/contact/cards/${cardId}/status?agent=${token}`, { method: 'PUT', body: JSON.stringify('confirmed') } );
checkResponse(card);
return await card.json();
Expand Down

0 comments on commit 76512cf

Please sign in to comment.