Don't show notification for user follow request if the user is inactive

This commit is contained in:
Mouse Reeve 2023-11-02 15:04:03 -07:00
parent ae51dcec63
commit e1217f2054

View file

@ -10,7 +10,9 @@
{% elif notification.notification_type == 'FOLLOW' %}
{% include 'notifications/items/follow.html' %}
{% elif notification.notification_type == 'FOLLOW_REQUEST' %}
{% include 'notifications/items/follow_request.html' %}
{% if notification.related_users.0.is_active %}
{% include 'notifications/items/follow_request.html' %}
{% endif %}
{% elif notification.notification_type == 'IMPORT' %}
{% include 'notifications/items/import.html' %}
{% elif notification.notification_type == 'ADD' %}