This commit is contained in:
Aevann1 2022-01-24 18:46:07 +02:00
parent 50029701f9
commit b529d36183

View file

@ -56,7 +56,11 @@ class Badge(Base):
@property
@lazy
def name(self):
return self.badge.name
try: return self.badge.name
except Exception as e:
print(e)
print(self.badge_id)
return ""
@property
@lazy