Merge pull request #477 from monich/replies
Fixed message reference in Replies chat
This commit is contained in:
commit
fd46780b89
1 changed files with 3 additions and 3 deletions
|
@ -228,9 +228,9 @@ ListItem {
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
delegateComponentLoadingTimer.start();
|
delegateComponentLoadingTimer.start();
|
||||||
|
if (myMessage.reply_to_message_id) {
|
||||||
if (myMessage.reply_to_message_id !== 0) {
|
tdLibWrapper.getMessage(myMessage.reply_in_chat_id ? myMessage.reply_in_chat_id : page.chatInformation.id,
|
||||||
tdLibWrapper.getMessage(page.chatInformation.id, myMessage.reply_to_message_id);
|
myMessage.reply_to_message_id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue