Fix NPE when sending email before DHT is done bootstrapping

This commit is contained in:
HungryHobo
2010-06-09 20:21:24 +00:00
parent 09337fa259
commit 09a271ba12

View File

@ -74,6 +74,7 @@ public class OutboxProcessor extends I2PBoteThread {
this.peerManager = peerManager;
this.relayPacketFolder = relayPacketFolder;
this.configuration = configuration;
wakeupSignal = new CountDownLatch(1);
outboxListeners = Collections.synchronizedList(new ArrayList<OutboxListener>());
}