Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
4-dash committed Dec 9, 2024
1 parent c6ad7a4 commit 5dd16fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/feedback/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ def get_evasys_list_veranstalter(self):
if self.primaerdozent is not None:
personen.append(self.primaerdozent)
for per in self.ergebnis_empfaenger.all():
if per.pk != self.primaerdozent.pk:
if self.primaerdozent is None or per.pk != self.primaerdozent.pk:
personen.append(per)
return personen

Expand Down

0 comments on commit 5dd16fc

Please sign in to comment.