Revert "more log warning fixes"
authorChris Sharp <csharp@georgialibraries.org>
Mon, 30 Jan 2023 18:51:51 +0000 (13:51 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Mon, 30 Jan 2023 18:51:51 +0000 (13:51 -0500)
This reverts commit a6c0358f8a720b79e6810adfec04041585163508.

Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm

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