From: Chris Sharp Date: Mon, 30 Jan 2023 18:42:54 +0000 (-0500) Subject: more log warning fixes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a6c0358f8a720b79e6810adfec04041585163508;p=evergreen%2Fpines.git more log warning fixes --- 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) } @_ ) );