diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-02 17:06:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-02 17:06:17 +0300 |
commit | 7e132dbe91104770f537389a472df181adc487b0 (patch) | |
tree | c8d5372fb2850ad15d1f5ce75f039195b29c2868 | |
parent | 46f1e1bdbf9ace42b1d12eef0ffdb5f6c26959f3 (diff) |
GG: compatibility fix
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Gadu-Gadu/src/gg_proto.cpp b/protocols/Gadu-Gadu/src/gg_proto.cpp index 42892e1064..b2ed4ed067 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.cpp +++ b/protocols/Gadu-Gadu/src/gg_proto.cpp @@ -29,7 +29,7 @@ GaduProto::GaduProto(const char *pszProtoName, const wchar_t *tszUserName) : // options
m_forwardPort(this, "ForwardPort", 1550),
m_forwardHost(this, "ForwardHost", L""),
- m_serverHosts(this, "ServerHosts", L""),
+ m_serverHosts(this, "ServerHosts", GG_KEYDEF_SERVERHOSTS),
m_autoRecconect(this, "AReconnect", 0),
m_useForwarding(this, "Forwarding", 0),
m_useManualHosts(this, "ManualHost", 1),
|