Merge pull request #133 from MyHush/hushchat

fix a problem with incoming requests
This commit is contained in:
Denio
2020-06-12 06:23:19 +02:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -158,10 +158,12 @@ void MainWindow::renderContactRequest(){
QString label_contact = index.data(Qt::DisplayRole).toString();
QStandardItemModel* contactMemo = new QStandardItemModel();
qDebug()<<label_contact;
if ((c.second.isOutgoing() == false) && (label_contact == c.second.getContact()))
if ((c.second.isOutgoing() == false) && (label_contact == c.second.getRequestZaddr()))
{

View File

@@ -1 +1 @@
#define APP_VERSION "1.3.2-Chat-Beta"
#define APP_VERSION "1.3.3"