@@ -, +, @@ --- Koha/Illrequest.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Illrequest.pm +++ a/Koha/Illrequest.pm @@ -1222,7 +1222,7 @@ sub check_out { $issue_args[0] = $patron->unblessed; my $issue = C4::Circulation::AddIssue(@issue_args); - if ($issue && %{$issue}) { + if ($issue) { # Update the request status $self->status('CHK')->store; return { --