Merge pull request #1531 from Shopify/pz-array-fetch-warning

Fix warning about block and default value
This commit is contained in:
Peter Zhu
2022-03-02 16:25:23 -05:00
committed by GitHub
+5 -1
View File
@@ -31,7 +31,11 @@ module Liquid
if @registers.key?(key)
@registers.fetch(key)
elsif default != UNDEFINED
@static.fetch(key, default, &block)
if block_given?
@static.fetch(key, &block)
else
@static.fetch(key, default)
end
else
@static.fetch(key, &block)
end