From f2d5bd4d6e3eda1ae98b5055f66495dbe2eaa717 Mon Sep 17 00:00:00 2001 From: Stephen Lyons Date: Wed, 9 Sep 2020 21:08:53 +0100 Subject: [PATCH] BugFix: TTYPE error I introduced this error in #3889 and it was reported in, and this PR will close #4066. Signed-off-by: Stephen Lyons --- src/ctelnet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctelnet.cpp b/src/ctelnet.cpp index be664d715c2..6712985807d 100644 --- a/src/ctelnet.cpp +++ b/src/ctelnet.cpp @@ -109,7 +109,7 @@ cTelnet::cTelnet(Host* pH, const QString& profileName) // than that in the initialisation list so that it is processed as a change // to set up the initial encoder encodingChanged("UTF-8"); - termType = QStringLiteral("Mudlet" APP_VERSION); + termType = QStringLiteral("Mudlet " APP_VERSION); if (QByteArray(APP_BUILD).trimmed().length()) { termType.append(QStringLiteral(APP_BUILD)); }