mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-18 08:26:03 +02:00
fix marketplace txn display (memo only)
This commit is contained in:
parent
2b7576cef5
commit
21cc6ee8dd
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ QString transactionString(const QJsonObject& valueObject) {
|
|||
QDateTime createdAt(QDateTime::fromSecsSinceEpoch(dateInteger, Qt::UTC));
|
||||
QString result;
|
||||
|
||||
if (sentCerts <= 0 && receivedCerts <= 0) {
|
||||
if (sentCerts <= 0 && receivedCerts <= 0 && !KNOWN_USERS.contains(valueObject["sender_name"].toString())) {
|
||||
// this is an hfc transfer.
|
||||
if (sent > 0) {
|
||||
QString recipient = userLink(valueObject["recipient_name"].toString(), valueObject["place_name"].toString());
|
||||
|
|
Loading…
Reference in a new issue