From 7ac43188a43acc9cb9f865db91eab09793630021 Mon Sep 17 00:00:00 2001 From: cuom1999 Date: Mon, 7 Aug 2023 20:33:49 +0700 Subject: [PATCH] Fix bug --- judge/models/contest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/judge/models/contest.py b/judge/models/contest.py index f5ab35b..f9bd0c4 100644 --- a/judge/models/contest.py +++ b/judge/models/contest.py @@ -542,7 +542,7 @@ class Contest(models.Model, PageVotable, Bookmarkable): return True # If the user is a contest organizer or curator - if user.profile.id in self.editor_ids: + if user and user.profile.id in self.editor_ids: return True return False