From 7d1980168633172ae5b1ccc2fba1fe95c0e7f236 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 25 Oct 2022 14:45:57 +0000 Subject: [PATCH] Bug 31894: (QA follow-up) Remove unneeded get_from_storage calls Content-Type: text/plain; charset=utf-8 Test plan: Run test again. --- Koha/Hold.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Koha/Hold.pm b/Koha/Hold.pm index 8379e3f718..36b434ed2b 100644 --- a/Koha/Hold.pm +++ b/Koha/Hold.pm @@ -204,7 +204,7 @@ sub set_transfer { 'after_hold_action', { action => 'transfer', - payload => { hold => $self->get_from_storage } + payload => { hold => $self } } ); @@ -269,7 +269,7 @@ sub set_waiting { 'after_hold_action', { action => 'waiting', - payload => { hold => $self->get_from_storage } + payload => { hold => $self } } ); @@ -365,7 +365,7 @@ sub set_processing { 'after_hold_action', { action => 'processing', - payload => { hold => $self->get_from_storage } + payload => { hold => $self } } ); -- 2.30.2