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
Hello, @cianclarke. Thank you for this wonderful module. I needed a quick way to organize a simple image gallery to share photos from a directory. This module does it quite well.
However, unfortunately, I wasn't able to make it work out of the box on Windows 7. After debugging I found that you are using a path.join method to construct urls for albums and photos. I guess, on Windows it produces incorrect values because of usage backward slashes instead of forward ones.
I was able to run it by replacing path.join with urljoin method. Tweaking the library is totally acceptable in my use case, but, probably, it may cause problems in production usage of the module. Hope, this helps somehow.
Best regards.
The text was updated successfully, but these errors were encountered:
Hello, @cianclarke. Thank you for this wonderful module. I needed a quick way to organize a simple image gallery to share photos from a directory. This module does it quite well.
However, unfortunately, I wasn't able to make it work out of the box on Windows 7. After debugging I found that you are using a
path.join
method to construct urls for albums and photos. I guess, on Windows it produces incorrect values because of usage backward slashes instead of forward ones.I was able to run it by replacing path.join with urljoin method. Tweaking the library is totally acceptable in my use case, but, probably, it may cause problems in production usage of the module. Hope, this helps somehow.
Best regards.
The text was updated successfully, but these errors were encountered: