diff options
Diffstat (limited to 'lib/private/Authentication/TwoFactorAuth/Manager.php')
-rw-r--r-- | lib/private/Authentication/TwoFactorAuth/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Authentication/TwoFactorAuth/Manager.php b/lib/private/Authentication/TwoFactorAuth/Manager.php index 2307a731002..56fca8a745c 100644 --- a/lib/private/Authentication/TwoFactorAuth/Manager.php +++ b/lib/private/Authentication/TwoFactorAuth/Manager.php @@ -106,7 +106,7 @@ class Manager { * @return boolean */ public function isTwoFactorAuthenticated(IUser $user): bool { - if ($this->mandatoryTwoFactor->isEnforced()) { + if ($this->mandatoryTwoFactor->isEnforcedFor($user)) { return true; } |