같은 답변에 대한 알림이 여러 번 수신됩니다

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

이렇게 하면 동작은 하지만, 여기서 빠져나갈 수 있는 다른 알림들이 있어서 조금 걱정됩니다. (예를 들어 억제하고 싶을 수 있는 플러그인 알림 등)

@lindsey 여기서 제품 관련 질문이 하나 있습니다. 언제 알림을 억제해야 할까요?

아마도 이 작은 수정은 한 걸음 전진인 것 같습니다?