This is a fast fix to keep pages loading
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
@lazy_property
def author(self):
- return self.backend.users.find_maintainer(self.data.author) or self.data.author
+ return self.backend.users.get_by_email(self.data.author) or self.data.author
@lazy_property
def committer(self):
- return self.backend.users.find_maintainer(self.data.committer) or self.data.committer
+ return self.backend.users.get_by_email(self.data.committer) or self.data.committer
@property
def subject(self):