From 3fd425ee1729f0606e8f2a61ad4e8710babde3e0 Mon Sep 17 00:00:00 2001 From: "Strech (Sergey Fedorov)" Date: Tue, 14 Oct 2014 20:00:00 +0400 Subject: [PATCH] Fixed extension upgrade #88 --- lib/lurker/json/schema/extensions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lurker/json/schema/extensions.rb b/lib/lurker/json/schema/extensions.rb index e230479..34db47d 100644 --- a/lib/lurker/json/schema/extensions.rb +++ b/lib/lurker/json/schema/extensions.rb @@ -12,7 +12,7 @@ def initialize(schema, options = {}) def merge!(schema) return unless Lurker.upgrade? - @schema = @parser.parse_property(parent_property, schema) + @schema = @parser.plain.parse_property(parent_property, schema) end end end