Skip to content

Commit

Permalink
Fix constant reference inside Unbuffered
Browse files Browse the repository at this point in the history
  • Loading branch information
willcosgrove committed Sep 7, 2024
1 parent e2186eb commit 697f643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/phlex/rails/unbuffered.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def method_missing(name, ...)
@object.public_send(name, *a, **k) do |*aa|
if aa.length == 1 && Phlex::SGML === aa[0]
@object.helpers.capture(
Phlex::Rails::Unbuffered.new(aa[0]),
::Phlex::Rails::Unbuffered.new(aa[0]),
&b
)
else
Expand Down

0 comments on commit 697f643

Please sign in to comment.