diff --git a/app/views/mailer/err_notification.html.haml b/app/views/mailer/err_notification.html.haml index ed9a4ea..5b5f878 100644 --- a/app/views/mailer/err_notification.html.haml +++ b/app/views/mailer/err_notification.html.haml @@ -34,6 +34,9 @@ %p.monospace - if @notice.request['url'].present? = link_to @notice.request['url'], @notice.request['url'] + %p.heading BROWSER: + %p.monospace + = user_agent_graph(@notice.problem) %p.heading BACKTRACE: - @notice.backtrace_lines.each do |line| %p.backtrace= line diff --git a/app/views/mailer/err_notification.text.erb b/app/views/mailer/err_notification.text.erb index f9c1caa..a6c3442 100644 --- a/app/views/mailer/err_notification.text.erb +++ b/app/views/mailer/err_notification.text.erb @@ -24,6 +24,11 @@ URL: <%= @notice.request['url'] %> +BROWSER: + +<%= @notice.user_agent_string %> + + BACKTRACE: <% @notice.backtrace_lines.each do |line| %> -- libgit2 0.21.2