more log warning fixes
authorChris Sharp <csharp@georgialibraries.org>
Mon, 30 Jan 2023 18:42:54 +0000 (13:42 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Mon, 30 Jan 2023 18:42:54 +0000 (13:42 -0500)
Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm

index 3c32377..ef9ff0e 100644 (file)
@@ -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) } @_
         )
     );