From a24f9c480bd625335e2adea8e47276f1c542fe35 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Mon, 1 Feb 2016 21:21:16 +0000 Subject: [PATCH] Added code to process the URL property in CalendarFreeBusyObject. --- .../calendarfreebusy/CalendarFreeBusy.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/source/objects/calendarfreebusy/CalendarFreeBusy.cpp b/source/objects/calendarfreebusy/CalendarFreeBusy.cpp index a993d46..89bef5a 100644 --- a/source/objects/calendarfreebusy/CalendarFreeBusy.cpp +++ b/source/objects/calendarfreebusy/CalendarFreeBusy.cpp @@ -405,4 +405,22 @@ void CalendarFreeBusyObject::ProcessData(){ } + // Process the data from URL. + + DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "URL"); + + if (DataReceived.begin() != DataReceived.end()){ + + try { + URLDataTokens = DataReceived.begin()->first.substr(4); + } + + catch(const out_of_range &oor){ + // Do nothing as there is no data. + } + + URLData = DataReceived.begin()->second; + + } + } \ No newline at end of file -- 2.39.5