about summary refs log tree commit diff
path: root/app/models/web
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-07-28 20:26:54 +0200
committerGitHub <noreply@github.com>2017-07-28 20:26:54 +0200
commitf0bb2c6d1eeea63cd92be3da57288fd4743a8db9 (patch)
tree235dceb462e37602306369d457af473665566f5f /app/models/web
parent13bb1ddc7f5f5e3a7fc57396427c750f40d80603 (diff)
Fix web push notifications "boost" icon not being loaded (regression from #4426) (#4431)
Diffstat (limited to 'app/models/web')
-rw-r--r--app/models/web/push_subscription.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/web/push_subscription.rb b/app/models/web/push_subscription.rb
index b343cf044..45ce3298a 100644
--- a/app/models/web/push_subscription.rb
+++ b/app/models/web/push_subscription.rb
@@ -135,7 +135,7 @@ class Web::PushSubscription < ApplicationRecord
     end
 
     if can_boost
-      actions << { title: translate('push_notifications.mention.action_boost'), icon: full_asset_url('web-push-icon_boost.png', skip_pipeline: true), todo: 'request', method: 'POST', action: "/api/v1/statuses/#{notification.target_status.id}/reblog" }
+      actions << { title: translate('push_notifications.mention.action_boost'), icon: full_asset_url('web-push-icon_reblog.png', skip_pipeline: true), todo: 'request', method: 'POST', action: "/api/v1/statuses/#{notification.target_status.id}/reblog" }
     end
 
     actions