Mehrere Benachrichtigungen über dieselbe Antwort erhalten

In post_alerter.rb

Change lines 589-599 from:
 # linked, quoted, mentioned, chat_quoted may be suppressed if you already have a reply notification
 if [
      Notification.types[:quoted],
      Notification.types[:linked],
      Notification.types[:mentioned],
      Notification.types[:chat_quoted],
    ].include?(type)
   if existing_notifications.find { |n| n.notification_type == Notification.types[:replied] }
     return
   end
 end

 To:
 # linked, quoted, mentioned, chat_quoted may be suppressed if you already have any notification about this 
 post
 if [
      Notification.types[:quoted],
      Notification.types[:linked],
      Notification.types[:mentioned],
      Notification.types[:chat_quoted],
    ].include?(type)
   return if existing_notifications.any?
 end

Dies wird funktionieren, aber ich mache mir etwas Sorgen, da hier noch andere Benachrichtigungen durchrutschen können. (z.B. Plugin-Benachrichtigungen, die wir möglicherweise unterdrücken möchten)

@lindsey Hier gibt es eine Produktfrage: Wann sollten wir eine Benachrichtigung unterdrücken?

Ist die kleine Korrektur ein Schritt nach vorn?