From 5e96e9ecba1fb9a52af29b7c902b68984b4cd197 Mon Sep 17 00:00:00 2001 From: Michael Prager Date: Wed, 6 Jan 2010 16:06:17 +0100 Subject: [PATCH] fixed reocurring events not showing properly --- comingNext/index.html | 2 +- comingNextB/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2