diff --git a/retroshare-gui/src/gui/chat/ChatWidget.cpp b/retroshare-gui/src/gui/chat/ChatWidget.cpp
index d27ac2412..baf868f20 100644
--- a/retroshare-gui/src/gui/chat/ChatWidget.cpp
+++ b/retroshare-gui/src/gui/chat/ChatWidget.cpp
@@ -1006,8 +1006,12 @@ void ChatWidget::addChatMsg(bool incoming, const QString &name, const RsGxsId gx
QString strGxsId = "";
if (!gxsId.isNull()) {
strGxsId = QString::fromStdString(gxsId.toStdString());
+ RsIdentityDetails details;
+ rsIdentity->getIdDetails(gxsId, details);
+
formatMsg.replace(QString("")
- ,QString("").arg(strGxsId) );
+ ,QString("").arg(strGxsId)
+ .append(details.mFlags & RS_IDENTITY_FLAGS_PGP_LINKED ? "" : tr("[Unsigned]") ) );
} else {
formatMsg.replace(QString(""),"");
}