From 2ca2e684a2b63604188a26567e11953e978c36a5 Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Sun, 12 Oct 2014 01:25:08 +0200 Subject: Fix stupid thinko (test was backwards!). --- org/madore/damlengine/WeblogSummary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'org') 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 { -- cgit v1.2.3