diff options
Diffstat (limited to 'src/modules/m_websocket.cpp')
-rw-r--r-- | src/modules/m_websocket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_websocket.cpp b/src/modules/m_websocket.cpp index 399b0b017..a7457f788 100644 --- a/src/modules/m_websocket.cpp +++ b/src/modules/m_websocket.cpp @@ -386,9 +386,9 @@ class ModuleWebSocket : public Module sha1 = &hash; } - void OnCleanup(int target_type, void* item) CXX11_OVERRIDE + void OnCleanup(ExtensionItem::ExtensibleType type, Extensible* item) CXX11_OVERRIDE { - if (target_type != TYPE_USER) + if (type != ExtensionItem::EXT_USER) return; LocalUser* user = IS_LOCAL(static_cast<User*>(item)); |