-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Closed
Description
I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.
- Yes
The bug
When editing location across multiple images and saving, the image locations are not being updated
The OS that Immich Server is running on
Debian 12
Version of Immich Server
v1.131.3
Version of Immich Mobile App
v1.131.3 build.2193
Platform with the issue
- Server
- Web
- Mobile
Your docker-compose.yml content
version: "3.8"
#
# WARNING: Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.
#
name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- stack.env
ports:
- 2283:2283
depends_on:
- redis
- database
restart: always
labels:
- "com.centurylinklabs.watchtower.enable=true" # Autoupdate feature.
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
volumes:
- model-cache:/cache
env_file:
- stack.env
restart: always
labels:
- "com.centurylinklabs.watchtower.enable=true" # Autoupdate feature.
redis:
container_name: immich_redis
image: redis:6.2-alpine@sha256:80cc8518800438c684a53ed829c621c94afd1087aaeb59b0d4343ed3e7bcf6c5
restart: always
database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0
env_file:
- stack.env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
volumes:
- pgdata:/var/lib/postgresql/data
restart: always
volumes:
pgdata:
model-cache:Your .env content
UPLOAD_LOCATION=/mnt/Immich
IMMICH_VERSION=release
TYPESENSE_API_KEY=some-random-text
DB_PASSWORD=postgres
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=immich_redis
TZ=Pacific/AucklandReproduction steps
- Multi-select images in Android app
- Scroll to and select 'Edit Location'
- Add latitude & longitude values
- Select 'Update'
- View information on individual image(s) that were updated
- See missing lat/long value(s)
Relevant log output
Additional information
No response
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done