fix: processor default config not working

This commit is contained in:
jeffreytse 2020-06-21 22:31:59 +08:00
parent 36a58e6ab8
commit 5b1b41889c

View File

@ -31,7 +31,6 @@ module Jekyll::Spaceship
end
def self.store(section, default)
return if @@store[section].nil?
return @@store[section] if default.nil?
@@store[section] = deep_merge(default, @@store[section])
end