When I am looking at a photo, and want to re-assign a face to a new person, a loading indicator displays, and it takes 15 seconds until the UI acknowledges that a change was made.
Right after clicking the done button, a message is shown saying "Edited X people" where X is twice the amount of people in the photo.
Here's the API calls made from when I hit the done button:
POST /person -> 201 367abfb4-18fa-4cc4-8499-764c729b6c58
PUT /face/367abfb4-18fa-4cc4-8499-764c729b6c58 -> 200
// 15 seconds later
GET /asset/e6b4bb1a-b8ab-4b03-886d-97b9336815b9
This is logged by immich_server right after I hit the done button:
DEBUG [PersonService] Changing feature photos for 1 person
PUID=1000
GUID=1001
# The location where your uploaded files are stored
UPLOAD_LOCATION=/disks/storage/immich/library
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release
# Connection secrets for postgres and typesense. You should change these to random passwords
DB_PASSWORD=...
TZ=America/New_York
# The values below this line do not need to be changed
###################################################################################
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=immich_redis
Reproduction steps
1. Open a photo
2. Open the info window
3. Edit people (pencil icon)
4. Remove an existing face (minus button on face)
5. Create a new person (plus icon)
6. Click Done
The bug
When I am looking at a photo, and want to re-assign a face to a new person, a loading indicator displays, and it takes 15 seconds until the UI acknowledges that a change was made.
Right after clicking the done button, a message is shown saying "Edited X people" where X is twice the amount of people in the photo.
Here's the API calls made from when I hit the done button:
This is logged by
immich_server
right after I hit the done button:The OS that Immich Server is running on
Ubuntu 22.04
Version of Immich Server
v1.98.0
Version of Immich Mobile App
v1.98.0
Platform with the issue
Your docker-compose.yml content
Your .env content
Reproduction steps
Additional information
No response