Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Core/Socket: Fix check session digest (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightprince authored Dec 24, 2023
1 parent a9c5881 commit 7316f67
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/server/game/Server/WorldSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include "Realm.h"
#include "ScriptMgr.h"
#include "SHA1.h"
#include "Util.h"
#include "World.h"
#include <zlib.h>
#include <memory>
Expand Down Expand Up @@ -740,6 +741,7 @@ void WorldSocket::HandleAuthContinuedSessionCallback(std::shared_ptr<WorldPacket
uint32 accountId = uint32(key.Fields.AccountId);
Field* fields = result->Fetch();
std::string login = fields[0].GetString();
Utf8ToUpperOnlyLatin(login);
BigNumber k;
k.SetHexStr(fields[1].GetCString());

Expand Down

0 comments on commit 7316f67

Please sign in to comment.