diff options
Diffstat (limited to 'src/client/QXmppClient.cpp')
| -rw-r--r-- | src/client/QXmppClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/QXmppClient.cpp b/src/client/QXmppClient.cpp index 76c9ea25..7b1a593b 100644 --- a/src/client/QXmppClient.cpp +++ b/src/client/QXmppClient.cpp @@ -829,8 +829,8 @@ void QXmppClient::injectIq(const QDomElement &element, const std::optional<QXmpp QXmppIq iq(QXmppIq::Error); iq.setTo(element.attribute("from")); const auto errMessage = e2eeMetadata.has_value() - ? QStringLiteral("Feature not implemented or not supported with end-to-end encryption.") - : QStringLiteral("Feature not implemented."); + ? QStringLiteral("Feature not implemented or not supported with end-to-end encryption.") + : QStringLiteral("Feature not implemented."); iq.setError(Err(Err::Cancel, Err::FeatureNotImplemented, errMessage)); reply(std::move(iq), e2eeMetadata); } |
