diff options
| author | 2020-02-09 16:01:52 +0000 | |
|---|---|---|
| committer | 2020-02-09 17:16:07 +0000 | |
| commit | 1cdffcaad7e62f84ca1ee85e8c4265d2701afd08 (patch) | |
| tree | 48a13b1c4d65ca2c76852680a7dcba4db2696c65 /src/modules/m_spanningtree/fjoin.cpp | |
| parent | Use C++11 inline initialisation for class members. (diff) | |
Move FindUUID to the UserManager class.
Diffstat (limited to 'src/modules/m_spanningtree/fjoin.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index f98b69414..794555d91 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -206,7 +206,7 @@ void CommandFJoin::ProcessModeUUIDPair(const std::string& item, TreeServer* sour // Comma not required anymore if the user has no modes const std::string::size_type ubegin = (comma == std::string::npos ? 0 : comma+1); std::string uuid(item, ubegin, UIDGenerator::UUID_LENGTH); - User* who = ServerInstance->FindUUID(uuid); + User* who = ServerInstance->Users.FindUUID(uuid); if (!who) { // Probably KILLed, ignore |
