From 1c80835f49d738ad5a8c4884f9472b2cd6afbeaa Mon Sep 17 00:00:00 2001 From: CalDescent Date: Fri, 7 Jan 2022 12:31:16 +0000 Subject: [PATCH] Default relayModeEnabled to true. Even though a final decision is yet to be made, it makes sense to test with this scenario to ensure that everything works correctly. --- src/main/java/org/qortal/settings/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/qortal/settings/Settings.java b/src/main/java/org/qortal/settings/Settings.java index d05cf392..a40b14a9 100644 --- a/src/main/java/org/qortal/settings/Settings.java +++ b/src/main/java/org/qortal/settings/Settings.java @@ -287,7 +287,7 @@ public class Settings { private String storagePolicy = "FOLLOWED_AND_VIEWED"; /** Whether to allow data outside of the storage policy to be relayed between other peers */ - private boolean relayModeEnabled = false; + private boolean relayModeEnabled = true; /** Whether to remember which data was originally uploaded using this node. * This prevents auto deletion of own files when storage limits are reached. */