mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
Liquid::Drop: Expect @context to always be set
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
# Liquid Change Log
|
||||
|
||||
## 5.2.1 (unreleased)
|
||||
|
||||
### Features
|
||||
|
||||
### Fixes
|
||||
* Liquid::Drop: Expect @context to always be set (#1528) [Thierry Joyal]
|
||||
|
||||
## 5.2.0 2021-03-01
|
||||
|
||||
### Features
|
||||
|
||||
+1
-1
@@ -27,7 +27,7 @@ module Liquid
|
||||
|
||||
# Catch all for the method
|
||||
def liquid_method_missing(method)
|
||||
return nil unless @context&.strict_variables
|
||||
return nil unless @context.strict_variables
|
||||
raise Liquid::UndefinedDropMethod, "undefined method #{method}"
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user