summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org/madore/damlengine/WeblogSummary.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org/madore/damlengine/WeblogSummary.java b/org/madore/damlengine/WeblogSummary.java
index 8ce2635..4819017 100644
--- a/org/madore/damlengine/WeblogSummary.java
+++ b/org/madore/damlengine/WeblogSummary.java
@@ -40,7 +40,9 @@ public final class WeblogSummary {
public static synchronized WeblogSummary getSummary(Context.DynamicContext dc) {
if ( singleton != null
- && ( dc == null || singleton.obtainedTime > dc.modTime ) )
+ && ( dc == null
+ || ( singleton.obtainedTime > dc.modTime
+ && singleton.obtainedTime > System.currentTimeMillis()-300000 ) ) )
return singleton;
singleton = new WeblogSummary();
try {