From 02e64be243f171ae14b732478e81fe7c273c4be6 Mon Sep 17 00:00:00 2001 From: Kurt Nordstrom Date: Mon, 24 Feb 2025 15:15:54 -0500 Subject: [PATCH] Fix hibernate arguments --- .../grails-app/controllers/org/olf/EntryLookupController.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/grails-app/controllers/org/olf/EntryLookupController.groovy b/service/grails-app/controllers/org/olf/EntryLookupController.groovy index e0c9041..8e6ab18 100644 --- a/service/grails-app/controllers/org/olf/EntryLookupController.groovy +++ b/service/grails-app/controllers/org/olf/EntryLookupController.groovy @@ -48,7 +48,7 @@ class EntryLookupController { String authorityString = parts[0]; String symbolString = parts[1]; List symbol_list = Symbol.executeQuery('select s from Symbol as s where s.authority.symbol = :authority and s.symbol = :symbol', - [authorityString?.toUpperCase(), symbolString?.toUpperCase()]); + [authority: authorityString?.toUpperCase(), symbol: symbolString?.toUpperCase()]); if (symbol_list.size() == 1) { results.add(symbol_list.get(0)); }