Skip to content

Commit

Permalink
Merge pull request #7 from dddsw/sg/fix-session-descriptions
Browse files Browse the repository at this point in the history
Full description not short description is used by the Blazor app
  • Loading branch information
dynamictulip authored Apr 25, 2024
2 parents 7b759ba + c2f0761 commit 7b12655
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ public async Task UpdateFromSessionize()
SessionizeId = item.id,
EventDetail = dbEvent,
SpeakerToken = Guid.NewGuid(),
FullDescription = ""
ShortDescription = ""
};
dbContext.Sessions.Add(dbSession);
}

dbSession.Title = item.title;
dbSession.ShortDescription = item.description;
dbSession.FullDescription = item.description;
dbSession.Speaker = GetSpeakers(speakers, item.speakers);
dbSession.Track = dbTracks.Single(x => x.SessionizeId == item.roomId);
dbSession.TimeSlot = GetTimeSlot(dbTimeSlots, item.startsAt, item.endsAt);
Expand Down

0 comments on commit 7b12655

Please sign in to comment.