summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2014-10-12 01:25:08 +0200
committerDavid A. Madore <david+git@madore.org>2014-10-12 01:25:08 +0200
commit2ca2e684a2b63604188a26567e11953e978c36a5 (patch)
tree21af7f4a373aaa0745dc23b6335ab16081abd01a
parent21082f364f868c842b8169bb58a9d4b44fdc87ab (diff)
downloaddamlengine-2ca2e684a2b63604188a26567e11953e978c36a5.tar.gz
damlengine-2ca2e684a2b63604188a26567e11953e978c36a5.tar.bz2
damlengine-2ca2e684a2b63604188a26567e11953e978c36a5.zip
Fix stupid thinko (test was backwards!).
-rw-r--r--org/madore/damlengine/WeblogSummary.java2
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 {