console.log -> Debug.log

This commit is contained in:
Sebastian Wolf 2020-11-29 12:34:42 +01:00
parent 663881b266
commit f446e35051

View file

@ -928,10 +928,10 @@ Page {
Connections { Connections {
target: stickerPickerLoader.item target: stickerPickerLoader.item
onStickerPicked: { onStickerPicked: {
console.log(stickerId) Debug.log("Sticker picked: " + stickerId);
tdLibWrapper.sendStickerMessage(chatInformation.id, stickerId) tdLibWrapper.sendStickerMessage(chatInformation.id, stickerId);
stickerPickerLoader.active = false stickerPickerLoader.active = false;
attachmentOptionsRow.isNeeded = false attachmentOptionsRow.isNeeded = false;
} }
} }