diff options
Diffstat (limited to 'protocols/Steam/src/steam_proto.cpp')
-rw-r--r-- | protocols/Steam/src/steam_proto.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Steam/src/steam_proto.cpp b/protocols/Steam/src/steam_proto.cpp index cd95b072e2..a21247bf90 100644 --- a/protocols/Steam/src/steam_proto.cpp +++ b/protocols/Steam/src/steam_proto.cpp @@ -48,10 +48,10 @@ CSteamProto::CSteamProto(const char *protoName, const wchar_t *userName) : debugLogA(__FUNCTION__":Setting protocol / module name to '%s'", m_szModuleName);
- if (uint32_t iGlobalValue = getDword(DB_KEY_LASTMSGTS)) {
+ if (uint32_t iGlobalValue = getDword(DBKEY_LASTMSG)) {
for (auto &cc : AccContacts())
- setDword(cc, DB_KEY_LASTMSGTS, iGlobalValue);
- delSetting(DB_KEY_LASTMSGTS);
+ setDword(cc, DBKEY_LASTMSG, iGlobalValue);
+ delSetting(DBKEY_LASTMSG);
}
}
|