parent
52beb29a0d
commit
2414559b80
|
@ -793,15 +793,13 @@ export class Convo {
|
||||||
|
|
||||||
const {id, message} = pendingMessage
|
const {id, message} = pendingMessage
|
||||||
|
|
||||||
const response = await networkRetry(2, () => {
|
const response = await this.agent.api.chat.bsky.convo.sendMessage(
|
||||||
return this.agent.api.chat.bsky.convo.sendMessage(
|
|
||||||
{
|
{
|
||||||
convoId: this.convoId,
|
convoId: this.convoId,
|
||||||
message,
|
message,
|
||||||
},
|
},
|
||||||
{encoding: 'application/json', headers: DM_SERVICE_HEADERS},
|
{encoding: 'application/json', headers: DM_SERVICE_HEADERS},
|
||||||
)
|
)
|
||||||
})
|
|
||||||
const res = response.data
|
const res = response.data
|
||||||
|
|
||||||
// remove from queue
|
// remove from queue
|
||||||
|
@ -883,9 +881,7 @@ export class Convo {
|
||||||
)
|
)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// throw new Error('UNCOMMENT TO TEST RETRY')
|
const {data} = await this.agent.api.chat.bsky.convo.sendMessageBatch(
|
||||||
const {data} = await networkRetry(2, () => {
|
|
||||||
return this.agent.api.chat.bsky.convo.sendMessageBatch(
|
|
||||||
{
|
{
|
||||||
items: messageArray.map(({message}) => ({
|
items: messageArray.map(({message}) => ({
|
||||||
convoId: this.convoId,
|
convoId: this.convoId,
|
||||||
|
@ -894,7 +890,6 @@ export class Convo {
|
||||||
},
|
},
|
||||||
{encoding: 'application/json', headers: DM_SERVICE_HEADERS},
|
{encoding: 'application/json', headers: DM_SERVICE_HEADERS},
|
||||||
)
|
)
|
||||||
})
|
|
||||||
const {items} = data
|
const {items} = data
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue