We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The name field on the Addon model is configured with a max_length set to 50 but we do have names in the wild that are longer than 50 chars.
name
Addon
max_length
50
All add-on names have 50 chars or less.
See also: mozilla/addons-linter#5540
┆Issue is synchronized with this Jira Task
The text was updated successfully, but these errors were encountered:
The decision is made to make it 75 characters as chrome has the same limit and most addons are less than 75 currently.
We cannot make this a DB constraint because all translations are saved in a single table and some text should be longer than 75 characters.
Sorry, something went wrong.
We should investigate ways to ensure you cannot bypass this limit (via locales in the manifest).
https://addons.mozilla.org/api/v5/addons/addon/export-tiktok-comments/ is an example with several locales going slightly over the limit (up to 55)
No branches or pull requests
What happened?
The
name
field on theAddon
model is configured with amax_length
set to50
but we do have names in the wild that are longer than 50 chars.What did you expect to happen?
All add-on names have 50 chars or less.
See also: mozilla/addons-linter#5540
Is there an existing issue for this?
┆Issue is synchronized with this Jira Task
The text was updated successfully, but these errors were encountered: