From a7c31fe37547edafa90b3d6cc036386e5421d354 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 11 Apr 2022 16:49:42 +0100 Subject: [PATCH] Bug 29346: (follow-up) Fix typo We set biblio_ids in enqueue then referred to biblio_id in process ;) Signed-off-by: Martin Renvoize --- Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm b/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm index 1909b63731..1ac098e7d2 100644 --- a/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm +++ b/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm @@ -69,7 +69,7 @@ sub process { } )->store; - my @biblio_ids = @{ $args->{biblio_id} }; + my @biblio_ids = @{ $args->{biblio_ids} }; my $report = { total_biblios => scalar @biblio_ids, -- 2.20.1