fix(discord): bound component labels by UTF-16 units - #60113
Merged
Conversation
teknium1
force-pushed
the
salvage/54969-discord-utf16-labels
branch
from
July 7, 2026 09:14
97cdb1a to
0819b2c
Compare
This was referenced Jul 7, 2026
12 tasks
This was referenced Jul 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Discord component labels (model picker select options, clarify choice buttons) are now truncated by UTF-16 code units — the unit Discord actually enforces — instead of Python code-point slices, so emoji-heavy labels can no longer exceed Discord's component field budgets and 400 the interaction.
Salvage of #54969 by @ooiuuii, cherry-picked onto current main with authorship preserved. Fixes #54968.
Changes
plugins/platforms/discord/adapter.py: model-picker select labels/values and clarify button labels routed through the existingutf16_len/_prefix_within_utf16_limithelpers fromgateway/platforms/base.py; word/soft-boundary truncation behavior preservedtests/gateway/test_discord_model_picker.py,tests/gateway/test_discord_clarify_buttons.py: emoji-heavy regression coverageValidation
[:100]→ 160 units, over budgetTargeted suites green; truncation math verified with real imports (no surrogate-pair splits).
Infographic