Skip to content
Snippets Groups Projects
Commit c87dbf6e authored by Alex Reisner's avatar Alex Reisner
Browse files

Call accessor rather than cache store.

Fixes #1286.
parent d36f36fd
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,7 @@ module Geocoder ...@@ -68,7 +68,7 @@ module Geocoder
# that have non-nil values. # that have non-nil values.
# #
def keys def keys
store.keys.select{ |k| k.match(/^#{prefix}/) and interpret(store[k]) } store.keys.select{ |k| k.match(/^#{prefix}/) and self[k] }
end end
## ##
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment