From: Michael Prager Date: Wed, 6 Jan 2010 15:06:17 +0000 (+0100) Subject: fixed reocurring events not showing properly X-Git-Url: https://code.delx.au/comingnext/commitdiff_plain/5e96e9ecba1fb9a52af29b7c902b68984b4cd197 fixed reocurring events not showing properly --- diff --git a/comingNext/index.html b/comingNext/index.html index 1ec9cbc..2de6e29 100644 --- a/comingNext/index.html +++ b/comingNext/index.html @@ -492,7 +492,7 @@ function updateData() } // make sure that we don't include an event twice (useful for ToDos that might come up twice) - if (eventIds[entry.id] == 1) { + if (eventIds[entry.id] == 1 && entry.Type == 'ToDo') { console.info('skipped (already included) ' + entry.id); counter--; continue; diff --git a/comingNextB/index.html b/comingNextB/index.html index e2e42f0..aeeb726 100644 --- a/comingNextB/index.html +++ b/comingNextB/index.html @@ -492,7 +492,7 @@ function updateData() } // make sure that we don't include an event twice (useful for ToDos that might come up twice) - if (eventIds[entry.id] == 1) { + if (eventIds[entry.id] == 1 && entry.Type == 'ToDo') { console.info('skipped (already included) ' + entry.id); counter--; continue;