Replace empty string with zero-width space

This commit is contained in:
Zeva Rose 2021-06-29 17:18:01 -06:00
parent e42b7dfffd
commit 54fcd42247

View file

@ -72,7 +72,7 @@ class JokeCog(commands.Cog):
for i in range(0, len(result["body"]), 1024):
body_chunks.append(
Field(
"",
"",
result["body"][i * 1024 : (i + 1) * 1024],
False,
)