Skip to content

Commit c2f0761

Browse files
author
Sara Gowen
committed
Full description not short description is used by the Blazor app
Sessionize only provides one type of description - use this in the app! We should look to remove the `ShortDescription` column in the future, but not this close to the event!
1 parent ac4fde0 commit c2f0761

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PocketDDD.Server/PocketDDD.Server.Services/SessionizeService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ public async Task UpdateFromSessionize()
8888
SessionizeId = item.id,
8989
EventDetail = dbEvent,
9090
SpeakerToken = Guid.NewGuid(),
91-
FullDescription = ""
91+
ShortDescription = ""
9292
};
9393
dbContext.Sessions.Add(dbSession);
9494
}
9595

9696
dbSession.Title = item.title;
97-
dbSession.ShortDescription = item.description;
97+
dbSession.FullDescription = item.description;
9898
dbSession.Speaker = GetSpeakers(speakers, item.speakers);
9999
dbSession.Track = dbTracks.Single(x => x.SessionizeId == item.roomId);
100100
dbSession.TimeSlot = GetTimeSlot(dbTimeSlots, item.startsAt, item.endsAt);

0 commit comments

Comments
 (0)