We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 253c724 commit 6564c16Copy full SHA for 6564c16
src/api/integrations/chatbot/chatwoot/services/chatwoot.service.ts
@@ -2101,7 +2101,7 @@ export class ChatwootService {
2101
const fileData = Buffer.from(imgBuffer.data, 'binary');
2102
2103
const img = await Jimp.read(fileData);
2104
- await img.cover(320, 180);
+ img.cover({ w: 320, h: 180 });
2105
2106
const processedBuffer = await img.getBuffer(JimpMime.png);
2107
0 commit comments