diff options
| author | 2022-01-31 00:03:39 +0000 | |
|---|---|---|
| committer | 2022-01-31 00:03:47 +0000 | |
| commit | 54db5b5e0aa65eac64ca3ce783a7bdb400134656 (patch) | |
| tree | 930e3674b64275d45e6f3c7185160af3ac036f65 /src/modules/m_ircv3_invitenotify.cpp | |
| parent | Fix a bunch of weird uses of .c_str(). (diff) | |
Fix the case of Membership::GetRank.
Diffstat (limited to 'src/modules/m_ircv3_invitenotify.cpp')
| -rw-r--r-- | src/modules/m_ircv3_invitenotify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3_invitenotify.cpp b/src/modules/m_ircv3_invitenotify.cpp index f2f23b069..916d6fa6f 100644 --- a/src/modules/m_ircv3_invitenotify.cpp +++ b/src/modules/m_ircv3_invitenotify.cpp @@ -44,7 +44,7 @@ public: continue; // Check whether the member has a high enough rank to see the notification - if (memb->getRank() < notifyrank) + if (memb->GetRank() < notifyrank) continue; // Caps are only set on local users |
