From f15eedcda738d4a0b0e77b6e6e03bc659a737624 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sun, 24 Aug 2014 12:10:36 -0400 Subject: [PATCH] Fix "thinko" in ILS->find_user_barcode. Signed-off-by: Jason Stephenson --- lib/NCIP/ILS.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NCIP/ILS.pm b/lib/NCIP/ILS.pm index 544baa8..65309ea 100644 --- a/lib/NCIP/ILS.pm +++ b/lib/NCIP/ILS.pm @@ -341,8 +341,8 @@ sub find_user_barcode { } } else { $authinput = $request->{$message}->{UserId}; - $field = 'UserIdentifierValue'; if ($authinput) { + $field = 'UserIdentifierValue'; if (ref $authinput ne 'ARRAY') { $authinput = [$authinput]; } -- 2.43.2