Skip to content

Commit 16eda84

Browse files
authored
merge by name and social urls (#2027)
* Remove speakers missing from Sched * Sync more socials * Track duplicate speakers * Actually use the equality sets * Collect sessions from previous years even if the username is different * Don't show data from the future * Fix 0s in old UI (was it always like this?)
1 parent 68262b3 commit 16eda84

File tree

7 files changed

+3456
-3373
lines changed

7 files changed

+3456
-3373
lines changed

scripts/sync-sched/count-speakers-without-details.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import type { SchedSpeaker } from "@/app/conf/_api/sched-types"
1616
console.log("Reading speakers.json...")
1717

1818
const speakersData = await readFile(speakersFilePath, "utf-8")
19-
const speakers: SchedSpeaker[] = JSON.parse(speakersData)
19+
const speakers: SchedSpeaker[] = JSON.parse(speakersData).speakers
2020

2121
const speakersWithoutDetails = speakers.filter(
2222
speaker => !speaker["~syncedDetailsAt"],

0 commit comments

Comments
 (0)