generate dht data even if dht receive and dht transmission is switched
off
pull/1/head
orbiter 12 years ago
parent 48e9a54e80
commit a1c989002b

@ -99,6 +99,7 @@ public class HeapModifier extends HeapReader implements BLOB {
*/
@Override
public void delete(byte[] key) throws IOException {
if (this.index == null) return;
key = normalizeKey(key);
// pre-check before synchronization

@ -2701,7 +2701,7 @@ public final class Switchboard extends serverSwitch {
condenser,
searchEvent,
sourceName,
getConfigBool(SwitchboardConstants.DHT_ENABLED, false) && !isRobinsonMode());
getConfigBool(SwitchboardConstants.DHT_ENABLED, false));
final RSSFeed feed =
EventChannel.channels(queueEntry.initiator() == null
? EventChannel.PROXY

Loading…
Cancel
Save