From 83916965347a53f424aabbf9ba6fa8ced00744cd Mon Sep 17 00:00:00 2001
From: erickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Tue, 16 Mar 2010 14:13:52 +0000
Subject: [PATCH] repaired key names in json query response

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15855 dcc99617-32d9-48b4-a31d-7c20da2025e4
---
 Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm b/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm
index ce7e437218..2dd36077ba 100644
--- a/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm
+++ b/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm
@@ -624,7 +624,7 @@ sub import_record_list_impl {
                     }
                 )->[0];
 
-                $imported = 1 if $res->{overlay_bib_record} eq 't';
+                $imported = 1 if $res->{'vandelay.overlay_bib_record'} eq 't';
 
             } elsif( scalar(@{$rec->matches}) == 1 ) {
                 
@@ -645,7 +645,7 @@ sub import_record_list_impl {
                         }
                     )->[0];
 
-                    $imported = 1 if $res->{overlay_bib_record} eq 't';
+                    $imported = 1 if $res->{'vandelay.overlay_bib_record'} eq 't';
 
                 } elsif($auto_overlay_exact) { 
                     
@@ -661,7 +661,7 @@ sub import_record_list_impl {
                         }
                     )->[0];
 
-                    $imported = 1 if $res->{auto_overlay_bib_record} eq 't';
+                    $imported = 1 if $res->{'vandelay.auto_overlay_bib_record'} eq 't';
                 }
             }
 
-- 
2.11.0