Author: toad
Date: 2007-06-12 21:27:00 +0000 (Tue, 12 Jun 2007)
New Revision: 13543
Modified:
trunk/freenet/src/freenet/node/updater/UpdateOverMandatoryManager.java
Log:
Don't bother if it's already blown.
Modified: trunk/freenet/src/freenet/node/updater/UpdateOverMandatoryManager.java
===================================================================
--- trunk/freenet/src/freenet/node/updater/UpdateOverMandatoryManager.java
2007-06-12 21:23:45 UTC (rev 13542)
+++ trunk/freenet/src/freenet/node/updater/UpdateOverMandatoryManager.java
2007-06-12 21:27:00 UTC (rev 13543)
@@ -110,6 +110,9 @@
// 3) if the download fails, move the notification; if the
download succeeds, process it
if(haveRevocationKey) {
+
+ if(updateManager.isBlown()) return true; // We already
know
+
// First, is the key the same as ours?
try {
FreenetURI revocationURI = new
FreenetURI(revocationKey);