Fix bug in Embed.__len__ caused by footer without text

This commit is contained in:
Mikey 2021-05-26 21:45:35 -07:00 committed by GitHub
parent f56543df15
commit f42e922696
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,11 +273,11 @@ class Embed:
total += len(field['name']) + len(field['value'])
try:
footer = self._footer
except AttributeError:
footer_text = self._footer['text']
except (AttributeError, KeyError):
pass
else:
total += len(footer['text'])
total += len(footer_text)
try:
author = self._author