Skip to content

Commit

Permalink
💚 FIX CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
stefrado committed Oct 21, 2024
1 parent 4711dfe commit 3e1d07f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdg/utils/context_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def settings(request):


def has_new_notifications(request):
if request.user and request.user.is_anonymous != True:
if request.user and request.user.is_anonymous is not True:
# Get the user's NotificationViewed instance
notification_viewed = NotificationViewed.objects.get(gebruiker=request.user)

Expand Down

0 comments on commit 3e1d07f

Please sign in to comment.