diff options
-rw-r--r-- | org/madore/damlengine/WeblogSummary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org/madore/damlengine/WeblogSummary.java b/org/madore/damlengine/WeblogSummary.java index 4f560e8..8ce2635 100644 --- a/org/madore/damlengine/WeblogSummary.java +++ b/org/madore/damlengine/WeblogSummary.java @@ -40,7 +40,7 @@ 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 ) ) return singleton; singleton = new WeblogSummary(); try { |