Stickers can now also be send as replies

This commit is contained in:
Sebastian Wolf 2021-02-14 10:46:29 +01:00
parent 42a697591d
commit ade5cb34fb
No known key found for this signature in database
GPG key ID: CEA9522B5F38A90A

View file

@ -1245,9 +1245,11 @@ Page {
target: stickerPickerLoader.item
onStickerPicked: {
Debug.log("Sticker picked: " + stickerId);
tdLibWrapper.sendStickerMessage(chatInformation.id, stickerId);
tdLibWrapper.sendStickerMessage(chatInformation.id, stickerId, newMessageColumn.replyToMessageId);
stickerPickerLoader.active = false;
attachmentOptionsFlickable.isNeeded = false;
newMessageInReplyToRow.inReplyToMessage = null;
newMessageColumn.editMessageId = "0";
}
}