From a6c0358f8a720b79e6810adfec04041585163508 Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Mon, 30 Jan 2023 13:42:54 -0500 Subject: [PATCH] more log warning fixes --- Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm index 3c323775ba..ef9ff0e872 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm @@ -2377,7 +2377,7 @@ sub unique_unnested_numbers { return uniq( map( int, - map { $_ eq 'NULL' ? undef : (split /,/, $_) } + map { $_ && $_ eq 'NULL' ? undef : (split /,/, $_) } map { substr($_, 1, -1) } @_ ) ); -- 2.11.0