A change was introduced when listing available holds that has incorrect JSON
syntax. This caused available holds not to be returned by the query.
Changing '+ahr' to '=' in the query resolves this.
Signed-off-by: Jason Stephenson <jstephenson@mvlc.org>
Signed-off-by: Ben Shum <bshum@biblio.org>
if($available) {
$holds_query->{where}->{shelf_time} = {'!=' => undef};
# Maybe?
- $holds_query->{where}->{pickup_lib} = {'+ahr' => 'current_shelf_lib'};
+ $holds_query->{where}->{pickup_lib} = {'=' => 'current_shelf_lib'};
}
}