summary refs log tree commit diff
path: root/resources/qml/UserProfile.qml
diff options
context:
space:
mode:
authorChethan2k1 <40890937+Chethan2k1@users.noreply.github.com>2020-09-10 09:56:14 +0530
committerChethan2k1 <40890937+Chethan2k1@users.noreply.github.com>2020-09-10 11:09:21 +0530
commite70b4e42680562a308d97ef34f2ad4eb3ac67bd1 (patch)
tree6c46a84ac44039c354e7fef72389b23dd9056066 /resources/qml/UserProfile.qml
parentAdd support non-encrypted room-verification messages (diff)
downloadnheko-e70b4e42680562a308d97ef34f2ad4eb3ac67bd1.tar.xz
Fix wrong tran_id issue
Diffstat (limited to 'resources/qml/UserProfile.qml')
-rw-r--r--resources/qml/UserProfile.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/UserProfile.qml b/resources/qml/UserProfile.qml

index 115a73c4..30d9c958 100644 --- a/resources/qml/UserProfile.qml +++ b/resources/qml/UserProfile.qml
@@ -94,7 +94,7 @@ ApplicationWindow{ newFlow.userId = profile.userid; newFlow.sender = true; deviceVerificationList.add(newFlow.tranId); - var dialog = deviceVerificationDialog.createObject(userProfileDialog, {flow: newFlow,isRequest: true}); + var dialog = deviceVerificationDialog.createObject(userProfileDialog, {flow: newFlow,isRequest: true,tran_id: newFlow.tranId}); dialog.show(); } } @@ -206,7 +206,7 @@ ApplicationWindow{ deviceVerificationList.updateProfile(newFlow.userId); }else{ deviceVerificationList.add(newFlow.tranId); - var dialog = deviceVerificationDialog.createObject(userProfileDialog, {flow: newFlow,isRequest:false}); + var dialog = deviceVerificationDialog.createObject(userProfileDialog, {flow: newFlow,isRequest:false,tran_id: newFlow.tranId}); dialog.show(); } }