summaryrefslogtreecommitdiff
path: root/modules/commands/cs_enforce.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-08-01 19:23:48 +0100
committerSadie Powell <sadie@witchery.services>2021-08-01 19:23:48 +0100
commite7e8447fa39ced57743eab51e8e2835ddddd7001 (patch)
tree2bc8d31f575616e612c0d7e3898bd94bd9165b18 /modules/commands/cs_enforce.cpp
parent561b205c4a3a125c12a7926ef18fa1eb822c387c (diff)
Deduplicate code for checking if a user is securely connected.
Diffstat (limited to 'modules/commands/cs_enforce.cpp')
-rw-r--r--modules/commands/cs_enforce.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/cs_enforce.cpp b/modules/commands/cs_enforce.cpp
index 8f21c8c35..968bd25cc 100644
--- a/modules/commands/cs_enforce.cpp
+++ b/modules/commands/cs_enforce.cpp
@@ -119,7 +119,7 @@ class CommandCSEnforce : public Command
if (user->IsProtected())
continue;
- if (!user->HasMode("SSL") && !user->HasExt("ssl"))
+ if (!user->IsSecurelyConnected())
users.push_back(user);
}