#Hide Faces Feature
1 messages · Page 1 of 1 (latest)
Do you have more than 500 faces ?
probably yea
Unfortunately for now, there’s not straightforward solution and you have to update manually your database
is there a fix in the foreseeable future
Of course !
It’s the number 4.a here
good to hear that thank you very much!
You’re welcome 😁
When does the bug get fixed?
🤷🏻♂️
Coult you show me were i find the instruction to manually edit the database
Do you have some experience with postgres and psql ?
yea a little
i think i already know enough. i used dbeaver software to edit databases.
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
thanks. do you know what the credentials for the database are
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
still cant connect, also treid the hostname from the .env file. any tipps
Are you sure you used the correct password ?
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?
Can you try to query your table in your Postgres docker ?
Normally the DB shouldnt be exposed to the outside by default
Probably the port isnt open, but you could temporarily change that
Can you explain how?
expose port 5432 on the postgres container in the docker-compose
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
just use a raw block :')
should work, i would just use
ports:
- 5432:5432
should be the same though