mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
chore: nicer retry errors
This commit is contained in:
@@ -521,7 +521,11 @@ export const makeMessagesSocket = (config: SocketConfig) => {
|
|||||||
try {
|
try {
|
||||||
const media = decryptMediaRetryData(result.media!, mediaKey, result.key.id)
|
const media = decryptMediaRetryData(result.media!, mediaKey, result.key.id)
|
||||||
if(media.result !== proto.MediaRetryNotification.MediaRetryNotificationResultType.SUCCESS) {
|
if(media.result !== proto.MediaRetryNotification.MediaRetryNotificationResultType.SUCCESS) {
|
||||||
throw new Boom(`Media re-upload failed by device (${media.result})`, { data: media })
|
const resultStr = proto.MediaRetryNotification.MediaRetryNotificationResultType[media.result]
|
||||||
|
throw new Boom(
|
||||||
|
`Media re-upload failed by device (${resultStr})`,
|
||||||
|
{ data: media, statusCode: MEDIA_RETRY_STATUS_MAP[media.result] }
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
content.directPath = media.directPath
|
content.directPath = media.directPath
|
||||||
@@ -601,3 +605,10 @@ export const makeMessagesSocket = (config: SocketConfig) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const MEDIA_RETRY_STATUS_MAP = {
|
||||||
|
[proto.MediaRetryNotification.MediaRetryNotificationResultType.SUCCESS]: 200,
|
||||||
|
[proto.MediaRetryNotification.MediaRetryNotificationResultType.DECRYPTION_ERROR]: 412,
|
||||||
|
[proto.MediaRetryNotification.MediaRetryNotificationResultType.NOT_FOUND]: 404,
|
||||||
|
[proto.MediaRetryNotification.MediaRetryNotificationResultType.GENERAL_ERROR]: 418,
|
||||||
|
} as const
|
||||||
|
|||||||
Reference in New Issue
Block a user