From b062fa3efeeefab5c2be76d6ada5080f5a7adb7f Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Wed, 8 Jan 2020 19:10:57 +0100 Subject: [PATCH] fix for c3voc weirdness --- .idea/.idea.c3stream/.idea/contentModel.xml | 2 ++ c3stream.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/.idea/.idea.c3stream/.idea/contentModel.xml b/.idea/.idea.c3stream/.idea/contentModel.xml index 80798a6..c9d3755 100644 --- a/.idea/.idea.c3stream/.idea/contentModel.xml +++ b/.idea/.idea.c3stream/.idea/contentModel.xml @@ -3,6 +3,8 @@ + + diff --git a/c3stream.cs b/c3stream.cs index 25e1a09..369a4d2 100644 --- a/c3stream.cs +++ b/c3stream.cs @@ -74,6 +74,7 @@ namespace c3stream { conference.Talks.Clear(); conference.LogoUri = parsed.LogoUrl.AbsoluteUri; conference.Talks.AddRange(parsed.Events); + conference.Talks.ForEach(p => p.Guid = p.Guid.Trim()); } }