Convert gif width/height to numbers
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Tulir Asokan 2024-06-19 14:25:04 +03:00 committed by Steve
parent bb435a4870
commit 3c17051642

View File

@ -68,9 +68,9 @@ export class GiphySearchTab extends Component {
widgetAPI.sendSticker({ widgetAPI.sendSticker({
"body": gif.title, "body": gif.title,
"info": { "info": {
"h": gif.images.original.height, "h": +gif.images.original.height,
"w": gif.images.original.width, "w": +gif.images.original.width,
"size": gif.images.original.size, "size": +gif.images.original.size,
"mimetype": "image/webp", "mimetype": "image/webp",
}, },
"msgtype": "m.image", "msgtype": "m.image",