Lines 101-107
sub get_xisbns {
Link Here
|
101 |
|
101 |
|
102 |
# loop through each ISBN and scope to the local collection |
102 |
# loop through each ISBN and scope to the local collection |
103 |
for my $response_data( @{ $response->{ isbn } } ) { |
103 |
for my $response_data( @{ $response->{ isbn } } ) { |
104 |
next if $response_data->{'content'} eq $isbn; |
|
|
105 |
next if $unique_xisbns->{ $response_data->{content} }; |
104 |
next if $unique_xisbns->{ $response_data->{content} }; |
106 |
$unique_xisbns->{ $response_data->{content} }++; |
105 |
$unique_xisbns->{ $response_data->{content} }++; |
107 |
my $xbiblio= _get_biblio_from_xisbn($response_data->{content}); |
106 |
my $xbiblio= _get_biblio_from_xisbn($response_data->{content}); |
108 |
- |
|
|