Compare commits
No commits in common. "cfd5f7b19c8862f7e9c3ee9fc8dd8dadeea1251a" and "efb292ca10f90fb0ad144af57e6b2e09a7ed2565" have entirely different histories.
cfd5f7b19c
...
efb292ca10
1 changed files with 5 additions and 1 deletions
|
@ -115,14 +115,17 @@ class Issues(commands.Cog):
|
|||
words = value.split()
|
||||
split_value = []
|
||||
current_part = ""
|
||||
|
||||
for word in words:
|
||||
if len(current_part) + len(word) + 1 <= 1024:
|
||||
current_part += word + " "
|
||||
else:
|
||||
split_value.append(current_part.strip())
|
||||
current_part = word + " "
|
||||
|
||||
if current_part:
|
||||
split_value.append(current_part.strip())
|
||||
|
||||
for i, part in enumerate(split_value):
|
||||
embed.add_field(name=title if i == 0 else "\u200b", value=part, inline=False)
|
||||
else:
|
||||
|
@ -218,7 +221,8 @@ class Issues(commands.Cog):
|
|||
if self.response.value is not None:
|
||||
embed.add_field(name=f"Response from {interaction.user.name}", value=self.response.value, inline=False)
|
||||
for field in embed.fields:
|
||||
field_names.append(field.name)
|
||||
if field.name != "\u200b":
|
||||
field_names.append(field.name)
|
||||
field_values.append(field.value)
|
||||
await message.edit(embed=embed, view=None)
|
||||
await self.user.send(embed=embed)
|
||||
|
|
Loading…
Reference in a new issue