You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bug:
A call to http://<url>/some/path/cistf72.jpg works fine.
A call to http://<url>/cistf72.jpg does not.
Some investigating revealed that the parse method in modifiers.js calls parseModifiers even when no path is provided. Since the first letter of the filename above is a modifier, it will set the hasModStr variable to true, which in turn cases trouble in image.js.
The end result is that images that (1) are in the root path and (2) start with a filename w/modifier string can never be retrieved by original.
The text was updated successfully, but these errors were encountered:
The bug:
A call to
http://<url>/some/path/cistf72.jpg
works fine.A call to
http://<url>/cistf72.jpg
does not.Some investigating revealed that the
parse
method inmodifiers.js
callsparseModifiers
even when no path is provided. Since the first letter of the filename above is a modifier, it will set thehasModStr
variable to true, which in turn cases trouble inimage.js
.The end result is that images that (1) are in the root path and (2) start with a filename w/modifier string can never be retrieved by original.
The text was updated successfully, but these errors were encountered: