Ensure we use InputIterator#each when in join filter (#1898)

This commit is contained in:
Ian Ker-Seymer
2025-01-16 11:36:36 -05:00
committed by GitHub
parent 0ec52a40b5
commit 6372289ba3
2 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -1065,7 +1065,7 @@ module Liquid
def join(glue)
first = true
output = +""
@input.each do |item|
each do |item|
if first
first = false
else