Skip to content

Commit 571d962

Browse files
committed
fixed some openplanner full event data
1 parent 1c28354 commit 571d962

File tree

1 file changed

+6
-6
lines changed
  • cloud/functions/src/crawlers/openplanner

1 file changed

+6
-6
lines changed

cloud/functions/src/crawlers/openplanner/crawler.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export const OPENPLANNER_CRAWLER: CrawlerKind<typeof OPENPLANNER_DESCRIPTOR_PARS
115115

116116
const talks: DetailedTalk[] = [],
117117
tracks: ThemedTrack[] = openPlannerSchedule.talkTracks.concat(descriptor.additionalTalkTracks),
118-
formats: TalkFormat[] = openPlannerSchedule.talkFormats.concat(descriptor.additionalTalkFormats),
118+
formats: ThemedTalkFormat[] = openPlannerSchedule.talkFormats.concat(descriptor.additionalTalkFormats),
119119
rooms: Room[] = openPlannerSchedule.rooms.concat(descriptor.additionalRooms),
120120
timezone = openPlannerSchedule.timezone;
121121

@@ -289,16 +289,16 @@ export const OPENPLANNER_CRAWLER: CrawlerKind<typeof OPENPLANNER_DESCRIPTOR_PARS
289289
id: eventId,
290290
title: openPlannerSchedule.title,
291291
description: descriptor.description,
292-
peopleDescription: descriptor.peopleDescription || '500',
292+
peopleDescription: descriptor.peopleDescription || '',
293293
timezone,
294294
logoUrl: openPlannerSchedule.logoUrl,
295295
backgroundUrl: openPlannerSchedule.backgroundUrl,
296296
headingTitle: openPlannerSchedule.headingTitle,
297297
headingBackground: openPlannerSchedule.headingBackground,
298-
talkFormats: openPlannerSchedule.talkFormats,
299-
talkTracks: openPlannerSchedule.talkTracks,
298+
talkFormats: formats,
299+
talkTracks: tracks,
300300
supportedTalkLanguages: openPlannerSchedule.supportedTalkLanguages,
301-
rooms: openPlannerSchedule.rooms,
301+
rooms: rooms,
302302
days: openPlannerSchedule.days,
303303
keywords: descriptor.keywords,
304304
location: descriptor.location,
@@ -318,7 +318,7 @@ export const OPENPLANNER_CRAWLER: CrawlerKind<typeof OPENPLANNER_DESCRIPTOR_PARS
318318
id: eventId,
319319
title: openPlannerSchedule.title,
320320
description: descriptor.description,
321-
peopleDescription: descriptor.peopleDescription || '500',
321+
peopleDescription: descriptor.peopleDescription || '',
322322
timezone,
323323
days: openPlannerSchedule.days,
324324
logoUrl: openPlannerSchedule.logoUrl,

0 commit comments

Comments
 (0)