workarea-commerce / workarea

Workarea is an enterprise-grade Ruby on Rails commerce platform
https://www.workarea.com
Other
326 stars 66 forks source link

Fix Missing Instance Variable In Cart Items View #555

Closed tubbo closed 3 years ago

tubbo commented 3 years ago

The @cart instance variable was only being conditionally defined if current_order.add_item succeeded. This caused an error if #add_item happens to fail when calling POST /cart/items from the storefront, resulting in a 500 error. To prevent this error, the definition of this variable has been moved above the condition.