-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
Exception on Antispoof cache save #713
Comments
Is it worth just changing the SQL schema to allow up to 85 characters in the username field per https://en.wikipedia.org/wiki/Wikipedia:Naming_conventions_(technical_restrictions)#Restrictions_on_usernames |
It's already 255 characters long in a (real) UTF-8 character set. The username column is the username from the request itself, not the API response. |
Oh, Rich needs to read properly... I thought it was coming from WP... heh |
Since I'll
good first issue
The necessary SQL to change the table in the patch file will be something like: ALTER TABLE antispoofcache MODIFY COLUMN username VARCHAR(512) NOT NULL; |
Probably just need to truncate on the sql inserts and selects.
The text was updated successfully, but these errors were encountered: