@queenanya/baileys 7.3.2 → 7.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -196,7 +196,7 @@ const generateProfilePictureFull = async (img) => {
|
|
|
196
196
|
ratio = jimp.getWidth() / 720;
|
|
197
197
|
}
|
|
198
198
|
else {
|
|
199
|
-
ratio = jimp.getWidth() /
|
|
199
|
+
ratio = jimp.getWidth() / 324;
|
|
200
200
|
}
|
|
201
201
|
;
|
|
202
202
|
width = width / ratio;
|
|
@@ -231,7 +231,7 @@ const generateProfilePictureFull2 = async (img) => {
|
|
|
231
231
|
ratio = jimp.getWidth() / 1280;
|
|
232
232
|
}
|
|
233
233
|
else {
|
|
234
|
-
ratio = jimp.getWidth() /
|
|
234
|
+
ratio = jimp.getWidth() / 574;
|
|
235
235
|
}
|
|
236
236
|
;
|
|
237
237
|
width = width / ratio;
|