Skip to content

Commit

Permalink
fix(msgmover): msgrelay 4096 error
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebank committed Jun 13, 2024
1 parent 8a3dfe8 commit fb3ca44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msgmover/msgmover.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ async def msgrelay(self, ctx: commands.Context):
relayList = ""
for relayId in msgrelayStoreV2:
relayList += f"**<#{relayId}>**\n{str(msgrelayStoreV2[relayId])}\n\n"
eg = discord.Embed(color=(await ctx.embed_colour()), title="Message Relays in this Server", description=relayList)
eg = discord.Embed(color=(await ctx.embed_colour()), title="Message Relays in this Server", description=str(relayList)[:4090])
await ctx.send(embed=eg)
# Relay settings
es = discord.Embed(color=(await ctx.embed_colour()), title="Message Relay Settings in this Server")
Expand Down

0 comments on commit fb3ca44

Please sign in to comment.