@@ -, +, @@ --- Koha/REST/V1/Illrequests.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/REST/V1/Illrequests.pm +++ a/Koha/REST/V1/Illrequests.pm @@ -56,7 +56,7 @@ sub list { } # Get the pipe-separated string of hidden ILL statuses - my $hidden_statuses_string = C4::Context->preference('ILLHiddenRequestStatuses'); + my $hidden_statuses_string = C4::Context->preference('ILLHiddenRequestStatuses') // q{}; # Turn into arrayref my $hidden_statuses = [ split /\|/, $hidden_statuses_string ]; --