Skip to content

Commit

Permalink
Adding action view to the rack app
Browse files Browse the repository at this point in the history
  • Loading branch information
timmatheson committed May 27, 2009
1 parent 05dec99 commit 480d284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/unfuddle_notifier.rb
Expand Up @@ -7,6 +7,6 @@ def initialize(app)

def call(env)
status, headers, response = @app.call(env)
[status, headers, ActionView::Template.new("panel", "views") + response.body]
[status, headers, ActionView::Template.new("panel", "views").render + response.body]
end
end

0 comments on commit 480d284

Please sign in to comment.