remotes/1693045480750635534/spooky-22
Aevann1 2022-01-24 18:46:07 +02:00
parent 823a86b03e
commit 4afdd8ed46
1 changed files with 5 additions and 1 deletions

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