1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-07-28 02:38:30 +00:00

Fix off-by-one error when fetching room hierarchy

This commit is contained in:
Ginger 2025-03-28 12:22:23 -04:00 committed by June Clementine Strawberry 🍓🦴
parent 6365f1a887
commit 75b6daa67f

View file

@ -159,7 +159,7 @@ where
break;
}
if parents.len() >= max_depth {
if parents.len() > max_depth {
continue;
}