diff options
| author | 2023-02-03 09:26:31 +0000 | |
|---|---|---|
| committer | 2023-02-03 09:26:31 +0000 | |
| commit | e64ace4c8279084a7d168ee1f9e50156b93fa2c7 (patch) | |
| tree | 4630a6b5295c549e4974ced5a651febaf0ce2481 /src/modules/m_spanningtree/main.cpp | |
| parent | Allow bouncers to introduce a user as away. (diff) | |
Expose the removed away message in OnUserBack.
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 1e94385d5..3f5885297 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -819,7 +819,7 @@ void ModuleSpanningTree::OnUserAway(User* user) CommandAway::Builder(user).Broadcast(); } -void ModuleSpanningTree::OnUserBack(User* user) +void ModuleSpanningTree::OnUserBack(User* user, const std::string& message) { OnUserAway(user); } |
