-
Notifications
You must be signed in to change notification settings - Fork 54
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
Problem uploading when image directories are numbers #3096
Comments
@sylvieed take a look at this. |
benwbrum
added a commit
that referenced
this issue
Apr 13, 2022
saracarl
added a commit
that referenced
this issue
Apr 13, 2022
Support numeric file uploads by prefixing slug for #3096
sylvieed
pushed a commit
that referenced
this issue
Jul 14, 2022
sylvieed
pushed a commit
that referenced
this issue
Jul 14, 2022
Support numeric file uploads by prefixing slug for #3096
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Riksarkivet ran into a problem uploading a zip file of images. The upload hung, and they were sent no errors. When I looked at the upload processing, I found this:
This is the same as #3074, introduced by #2328
Discussed with @benwbrum and, since the core problem #2328 was trying to solve was slugs (aka URLs) being all numbers (and colliding with IDs), and we've run into problems with this twice now since we deployed that change, a validation is not the right place to put this. We should allow all numeric titles, but in the slug generator append something to make it a string rather than a number.
The text was updated successfully, but these errors were encountered: