diff --git a/app/models/proposal.rb b/app/models/proposal.rb
index 672394c6d..fff616626 100644
--- a/app/models/proposal.rb
+++ b/app/models/proposal.rb
@@ -205,7 +205,7 @@ class Proposal < ActiveRecord::Base
end
def users_to_notify
- (voters + followers).uniq
+ (voters + followers).uniq - [author]
end
def self.proposals_orders(user)
diff --git a/app/views/admin/activity/show.html.erb b/app/views/admin/activity/show.html.erb
index dd4cee125..3f82369ea 100644
--- a/app/views/admin/activity/show.html.erb
+++ b/app/views/admin/activity/show.html.erb
@@ -33,12 +33,16 @@
<%= activity.actionable.username %> (<%= activity.actionable.email %>)
<% when "Comment" %>
<%= activity.actionable.body %>
+ <% when "Newsletter" %>
+ <%= activity.actionable.subject %>
+ <% when "ProposalNotification" %>
+ <%= activity.actionable.title %>
+
+ <%= activity.actionable.body %>
<% else %>
<%= activity.actionable.title %>
-