From cd8af74dcd1796c3fea224153b09e7d3ec8f1b69 Mon Sep 17 00:00:00 2001 From: Michael Prager Date: Sat, 14 May 2011 14:41:53 +0200 Subject: [PATCH] added support for Location field for DayEvents (since N8 supports it). A bug in Nokias API causes these fields to show as "undefined" though. Until this is fixed via firmware update, locations will not be displayed for DayEvents. --- comingNext/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comingNext/index.html b/comingNext/index.html index 48610ac..13745ef 100644 --- a/comingNext/index.html +++ b/comingNext/index.html @@ -674,7 +674,7 @@ function updateData() // summary can be undefined! var Summary = ((entry.Summary == null) ? '' : entry.Summary); - if (entry.Type == 'Meeting' && entry.Location != '' && config['showLocation'].Value) + if (entry.Location != '' && entry.Location != undefined && config['showLocation'].Value) Summary += ', ' + entry.Location; // fix by yves: determine start and end dates/times -- 2.39.2