diff options
author | George Hazan <ghazan@miranda.im> | 2023-02-28 18:29:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-02-28 18:29:25 +0300 |
commit | 3a35e893b276bf28fbf949d67b92961bc5293b55 (patch) | |
tree | 2a4b9f48d1f4db62035bc58aed42667239bab96b /protocols/ICQ-WIM/src/options.cpp | |
parent | 1d9308bdb58d0cff1b12bf82575319964bae469e (diff) |
fixes #2938 (MRA: contact search does not work)
Diffstat (limited to 'protocols/ICQ-WIM/src/options.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ICQ-WIM/src/options.cpp b/protocols/ICQ-WIM/src/options.cpp index ab17121a30..9a07a4b462 100644 --- a/protocols/ICQ-WIM/src/options.cpp +++ b/protocols/ICQ-WIM/src/options.cpp @@ -58,7 +58,7 @@ public: bool CIcqProto::RetrievePassword()
{
// if we registered via phone (i.e., server holds the password), we don't need to enter it
- if (getByte(DB_KEY_PHONEREG))
+ if (SkipRapi())
return true;
if (!m_szPassword.IsEmpty() && m_bRememberPwd)
|