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
I found one issue with site-builder. It only checks against lower-case "jpg" and doesn't check png at all. Although the resize function tales care of png.
Changing line 54 index.js of site-builder to return object.startsWith(album + "/") && (object.toLowerCase().endsWith('.jpg') || object.toLowerCase().endsWith('.png'));
fixes the issue.
Thanks for the great work.
Best Roman
The text was updated successfully, but these errors were encountered:
Jantek
pushed a commit
to Jantek/AWSPics
that referenced
this issue
Sep 28, 2018
HI,
I found one issue with site-builder. It only checks against lower-case "jpg" and doesn't check png at all. Although the resize function tales care of png.
Changing line 54 index.js of site-builder to
return object.startsWith(album + "/") && (object.toLowerCase().endsWith('.jpg') || object.toLowerCase().endsWith('.png'));
fixes the issue.
Thanks for the great work.
Best Roman
The text was updated successfully, but these errors were encountered: