fix: Added mimetype field when sending media

This commit is contained in:
Davidson Gomes
2023-10-25 10:29:24 -03:00
parent bc70ec8b07
commit 783c00a1d9
6 changed files with 12 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ info:
</font>
[![Run in Postman](https://run.pstmn.io/button.svg)](https://god.gw.postman.com/run-collection/26869335-5546d063-156b-4529-915f-909dd628c090?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D26869335-5546d063-156b-4529-915f-909dd628c090%26entityType%3Dcollection%26workspaceId%3D339a4ee7-378b-45c9-b5b8-fd2c0a9c2442)
version: 1.5.4
version: 1.5.5
contact:
name: DavidsonGomes
email: contato@agenciadgcode.com

View File

@@ -61,6 +61,7 @@ export class SendPollDto extends Metadata {
export type MediaType = 'image' | 'document' | 'video' | 'audio';
export class MediaMessage {
mediatype: MediaType;
mimetype?: string;
caption?: string;
// for document
fileName?: string;

View File

@@ -1188,7 +1188,6 @@ export class WAStartupService {
const proxyUrls = text.split('\r\n');
const rand = Math.floor(Math.random() * Math.floor(proxyUrls.length));
const proxyUrl = 'http://' + proxyUrls[rand];
console.log(proxyUrl);
options = {
agent: new ProxyAgent(proxyUrl as any),
};
@@ -2447,10 +2446,14 @@ export class WAStartupService {
let mimetype: string;
if (isURL(mediaMessage.media)) {
mimetype = getMIMEType(mediaMessage.media);
if (mediaMessage.mimetype) {
mimetype = mediaMessage.mimetype;
} else {
mimetype = getMIMEType(mediaMessage.fileName);
if (isURL(mediaMessage.media)) {
mimetype = getMIMEType(mediaMessage.media);
} else {
mimetype = getMIMEType(mediaMessage.fileName);
}
}
this.logger.verbose('Mimetype: ' + mimetype);