Skip to content

Commit 6ac5552

Browse files
committed
Fix string interpolation
1 parent c7fe9fd commit 6ac5552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/blacklight/elasticsearch/search_builder_behavior.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def facet_value_to_fq_string(facet_field, value, use_local_params: true)
291291
index_field ||= facet_field
292292

293293
if facet_config && facet_config.query
294-
raise "facet value not found, {value}" unless facet_config.query[value]
294+
raise "facet value not found, #{value}" unless facet_config.query[value]
295295

296296
facet_config.query[value][:fq]
297297
elsif value.is_a?(Range)

0 commit comments

Comments
 (0)