Bug 36277: Avoid useless warnings
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 15 Mar 2024 12:05:55 +0000 (09:05 -0300)
committerKatrin Fischer <katrin.fischer@bsz-bw.de>
Fri, 15 Mar 2024 14:39:11 +0000 (15:39 +0100)
commit03b0f31b9e63ce314c333ac6ffd68587a609e587
treebe1530083c2c2ba93e10c73b441e63a625f99520
parent202628342ab9397e8b15aa5e62c0aaa041d3c8a0
Bug 36277: Avoid useless warnings

As mentioned on bug 36329, this endpoint is only used with one of this
parameters:

* item_type
* collection_code

The other will be NULL both on the DB and the (deserialized) request
body. For the data from the DB, the author added `|| q{}` but missed to
do so on the incoming parameters when generates the hash key.

This generates the following warnings when using from the UI:

[2024/03/15 11:42:51] [WARN] Use of uninitialized value in sprintf at /kohadevbox/koha/Koha/REST/V1/TransferLimits.pm line 146.

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Koha/REST/V1/TransferLimits.pm