[F] fix actual hide

pull/232/head
Elihuso Quigley 2024-06-10 00:36:12 +08:00
parent 1e6a2dfb39
commit 998324b1d2
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ function buildPeopleInfoAndList() {
} }
if (info.id && info.info && info.info.born) { if (info.id && info.info && info.info.born) {
birthdayList.push([info.id, info.info.born]) if (!actualHide.includes(info.id)) {
birthdayList.push([info.id, info.info.born])
}
} }
// Convert info dict to [[key, value], ...] // Convert info dict to [[key, value], ...]