X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreauthhandler.cpp;h=6cccaf87c2983ed27685601ac72e4c06ab60c5f3;hp=913968bca1e7eba75bd465c45f30012a48aca2e5;hb=899709300734acc2bac01b1d57a1fd8fe2a6d923;hpb=fa3449061f17d7e8db1387f0758fd052f22f4c3b diff --git a/src/core/coreauthhandler.cpp b/src/core/coreauthhandler.cpp index 913968bc..6cccaf87 100644 --- a/src/core/coreauthhandler.cpp +++ b/src/core/coreauthhandler.cpp @@ -246,8 +246,12 @@ void CoreAuthHandler::handle(const Login &msg) const auto &clientFeatures = _peer->features(); auto unsupported = clientFeatures.toStringList(false); if (!unsupported.isEmpty()) { - quInfo() << qPrintable(tr("Client does not support the following features: %1").arg(unsupported.join(", "))); + if (unsupported.contains("NoFeatures")) + quInfo() << qPrintable(tr("Client does not support extended features.")); + else + quInfo() << qPrintable(tr("Client does not support the following features: %1").arg(unsupported.join(", "))); } + if (!clientFeatures.unknownFeatures().isEmpty()) { quInfo() << qPrintable(tr("Client supports unknown features: %1").arg(clientFeatures.unknownFeatures().join(", "))); }