Important
If you just updated to Immich v1.118.0 and you are using the script within your Immich docker-compose stack, with ROOT_URL
referencing the immich-server
service directly, you must update the port in ROOT_URL
from 3001
to 2283
:
immich-folder-album-creator:
container_name: immich_folder_album_creator
image: salvoxia/immich-folder-album-creator:latest
restart: unless-stopped
environment:
- API_URL: http://immich_server:3001/api
+ API_URL: http://immich_server:2283/api
Fixes
- #71 fix broken api after upgrade to 1.118 in #72
Restores compatibility with Immich v1.118.0
Thanks @Felix-Franz - Fix: Find Assets in Archive in #73
Fixed Regression introduced with v0.13.0: Assets in archive were no longer found even if--find-assets-in-archive
flag /FIND_ASSETS_IN_ARCHIVE
env variable was set or--mode
was anything butCREATE
.
New Contributors
- @Felix-Franz made their first contribution in #72
Full Changelog: 0.13.0...0.14.0