diff options
author | George Hazan <ghazan@miranda.im> | 2022-02-13 18:57:17 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-02-13 18:57:17 +0300 |
commit | e9dd5c1891209c381e6a0d0493ac8d18a94b2ce2 (patch) | |
tree | 5e801b79038b0197d01c3871684dd2878b0c4241 /protocols/JabberG | |
parent | 9bda41fad17839d2ff5dda95b263c64532771277 (diff) |
fixes #3038 (Jabber: don't tell to server about Miranda version and OS by default)
Diffstat (limited to 'protocols/JabberG')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp index 4bb9fa01f6..3272604517 100755 --- a/protocols/JabberG/src/jabber_proto.cpp +++ b/protocols/JabberG/src/jabber_proto.cpp @@ -126,7 +126,7 @@ CJabberProto::CJabberProto(const char *aProtoName, const wchar_t *aUserName) : m_bRosterSync(this, "RosterSync", false),
m_bSavePassword(this, "SavePassword", true),
m_bShowForeignResourceInMirVer(this, "ShowForeignResourceInMirVer", false),
- m_bShowOSVersion(this, "ShowOSVersion", true),
+ m_bShowOSVersion(this, "ShowOSVersion", false),
m_bShowTransport(this, "ShowTransport", true),
m_bUseDomainLogin(this, "UseDomainLogin", false),
m_bUseHttpUpload(this, "UseHttpUpload", false),
|