Skip to content

Commit

Permalink
Merge branch 'main' into feature/deployTerraformFromGitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
russdaygh authored Apr 25, 2024
2 parents dd39a3d + 7b12655 commit 53c7e47
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 53c7e47

Please sign in to comment.