Subject: | typo in transaction type checking |
in RT/Client/REST.pm, you have made a typo :
Around line 190, Instead of
return sort map {
$self->get_transaction_ids(
parent_id => $parent_id,
transaction_type => $_,
)
} map {
# Check all the types before recursing, cheaper to catch an
# error this way.
$self->_valid_transaction_type($_)
} @$type;
you should have used probably
return sort map {
$self->get_transaction_ids(
parent_id => $parent_id,
transaction_type => $_,
)
} map {
# Check all the types before recursing, cheaper to catch an
# error this way.
$self->_valid_transaction_type($_)
} @$tr_type;
(check $@type vs $@tr_type) That makes accessing transactions failing.