File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -46,4 +46,7 @@ export const idMap = new Map<UUID, `${number}`>([
4646
4747 // 田村 聡太
4848 [ "20ad872b-594c-8106-aae5-0002615bc919" , "1357355510315090081" ] ,
49+
50+ // 岩本 龍拓
51+ [ "1f7d872b-594c-81e7-bd5f-0002afe2ab30" , "1357848383250763916" ] ,
4952] ) ;
Original file line number Diff line number Diff line change @@ -83,7 +83,9 @@ async function main() {
8383 if ( taskResults . length === 0 ) return "本日は期限が迫っているタスクはありませんでした。" ;
8484
8585 const tasks = taskResults . map ( ( t ) => t . formatted ) ;
86- const allUnregistered = [ ...new Set ( taskResults . flatMap ( ( t ) => t . unregistered ) ) ] ;
86+ const allUnregistered = [
87+ ...new Map ( taskResults . flatMap ( ( t ) => t . unregistered ) . map ( ( u ) => [ u . id , u ] ) ) . values ( ) ,
88+ ] ;
8789
8890 let message = `
89913日以内に期限が迫っているタスクがあります!
You can’t perform that action at this time.
0 commit comments