Hide Faces Feature

I accidentally hid some faces with the new Show & Hide faces feature and i want to get them back.
30 Replies
martabal
martabal2y ago
Do you have more than 500 faces ?
linux_typ
linux_typOP2y ago
probably yea
martabal
martabal2y ago
Unfortunately for now, there’s not straightforward solution and you have to update manually your database
linux_typ
linux_typOP2y ago
is there a fix in the foreseeable future
martabal
martabal2y ago
Of course ! It’s the number 4.a here
martabal
martabal2y ago
GitHub
[Feature] Facial Recognition Enhancements · immich-app immich · Dis...
(Parent discussion for FR enhancements) Summary: 1. Ability to show/hide faces (similar to google photos) (#3262) 2. Option to select an alternative person thumbnail (similar to google photos) (#30...
linux_typ
linux_typOP2y ago
good to hear that thank you very much!
martabal
martabal2y ago
You’re welcome 😁
linux_typ
linux_typOP2y ago
When does the bug get fixed?
martabal
martabal2y ago
🤷🏻‍♂️
linux_typ
linux_typOP2y ago
Coult you show me were i find the instruction to manually edit the database
martabal
martabal2y ago
Do you have some experience with postgres and psql ?
linux_typ
linux_typOP2y ago
yea a little i think i already know enough. i used dbeaver software to edit databases.
martabal
martabal2y ago
Nice Should be easy with dbeaver Connect to your immich database, go to the "person" table All the people you hid have the isHidden row set to true If you have set a name to the person you accidentally hid, it should be easy to find
linux_typ
linux_typOP2y ago
thanks. do you know what the credentials for the database are
martabal
martabal2y ago
If you didn't set a name, my recommendation would be to set false to all isHidden entries No, but you can find it in your .env file 😉 If you didn't change it, the username and password should be postgres
linux_typ
linux_typOP2y ago
still cant connect, also treid the hostname from the .env file. any tipps
No description
martabal
martabal2y ago
Yes don't use localhost use directly your ip address
linux_typ
linux_typOP2y ago
No description
linux_typ
linux_typOP2y ago
do you have any idea why i still doesnt work
martabal
martabal2y ago
Are you sure you used the correct password ?
linux_typ
linux_typOP2y ago
yes i am The issue still isnt resolved and i cant connect to the database could you take a look at that one more time?
martabal
martabal2y ago
Can you try to query your table in your Postgres docker ?
MarcMK
MarcMK2y ago
Normally the DB shouldnt be exposed to the outside by default Probably the port isnt open, but you could temporarily change that
linux_typ
linux_typOP2y ago
Can you explain how?
Arlind
Arlind2y ago
expose port 5432 on the postgres container in the docker-compose
linux_typ
linux_typOP2y ago
like this? environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} PG_DATA: /var/lib/postgresql/data expose: - "5432" sorry the markdown editing kicks in
linux_typ
linux_typOP2y ago
No description
MarcMK
MarcMK2y ago
just use a raw block :') should work, i would just use
ports:
- 5432:5432
ports:
- 5432:5432
should be the same though
linux_typ
linux_typOP2y ago
thank you very much! mine didnt work but with your option it did

Did you find this page helpful?