fix: Only trigger notification for subscribers that don't post the comment themeselves
This commit is contained in:
		@@ -68,6 +68,8 @@ def adoption_notice_detail(request, adoption_notice_id):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
                # Notify users that a comment was added
 | 
					                # Notify users that a comment was added
 | 
				
			||||||
                for subscription in adoption_notice.get_subscriptions():
 | 
					                for subscription in adoption_notice.get_subscriptions():
 | 
				
			||||||
 | 
					                    # Create a notification but only if the user is not the one that posted the comment
 | 
				
			||||||
 | 
					                    if subscription.user != request.user:
 | 
				
			||||||
                        notification = CommentNotification(user=subscription.user,
 | 
					                        notification = CommentNotification(user=subscription.user,
 | 
				
			||||||
                                                           title=f"{adoption_notice.name} - Neuer Kommentar",
 | 
					                                                           title=f"{adoption_notice.name} - Neuer Kommentar",
 | 
				
			||||||
                                                           text=f"{request.user}: {comment_instance.text}",
 | 
					                                                           text=f"{request.user}: {comment_instance.text}",
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user