From 54a86112e4e2f3fc93a90ce723f226c748991486 Mon Sep 17 00:00:00 2001 From: Alan Buxey Date: Thu, 22 Aug 2019 14:25:24 +0100 Subject: [PATCH] fix raidus typo (#637) radius not raidus --- lib/App/Netdisco/Web/Auth/Provider/DBIC.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/App/Netdisco/Web/Auth/Provider/DBIC.pm b/lib/App/Netdisco/Web/Auth/Provider/DBIC.pm index 9b86037c..bb6780be 100644 --- a/lib/App/Netdisco/Web/Auth/Provider/DBIC.pm +++ b/lib/App/Netdisco/Web/Auth/Provider/DBIC.pm @@ -110,7 +110,7 @@ sub match_password { if ($user->ldap) { $pwmatch_result = $self->match_with_ldap($password, $username); } - elsif ($user->raidus) { + elsif ($user->radius) { $pwmatch_result = $self->match_with_radius($password, $username); } else {