fix: shorten channel name if it's too long for discords limit

This commit is contained in:
Kaaninchen
2026-08-20 13:22:14 +02:00
parent 999fe141b9
commit 054ab7fc42
8 changed files with 25 additions and 16 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ def build_info_embed() -> discord.Embed:
arrival = format_timestamp_to_dc(trip["arrival"])
embed = discord.Embed(
title = trip["long_name"],
title = trip["channel_name"],
description=lang_embed.info.description(),
color = metadata["color"]
)