-
I recently encountered a bug where people were incorrectly hidden. I temporarily resolved this by manually updating the database with the following query: UPDATE public.person SET "isHidden" = false WHERE "isHidden" = true; While this made previously hidden people visible, unassigned persons remain hidden, even when the 'Show & hide people' popup is open (don't display any hidden and any unassigned persons) Some queries from my db: SELECT COUNT(*) FROM public.person WHERE person."name" != '';
331
SELECT COUNT(*) FROM public.person WHERE person."name" = '';
814
SELECT COUNT(*) FROM public.person WHERE person."isHidden" = false;
1145
SELECT COUNT(*) FROM public.person WHERE person."isHidden" = true;
0 May you please help me to fix this issue? PS. I didn't post it as a bug report because I couldn't catch where the bug occurs (backend or frontend). Immich v1.125.7
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Upgrading to Immich v1.126.1 fix this issue. |
Beta Was this translation helpful? Give feedback.
Upgrading to Immich v1.126.1 fix this issue.