Browse Source

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.
qdn
CalDescent 3 years ago
parent
commit
1c80835f49
  1. 2
      src/main/java/org/qortal/settings/Settings.java

2
src/main/java/org/qortal/settings/Settings.java

@ -287,7 +287,7 @@ public class Settings {
private String storagePolicy = "FOLLOWED_AND_VIEWED"; private String storagePolicy = "FOLLOWED_AND_VIEWED";
/** Whether to allow data outside of the storage policy to be relayed between other peers */ /** 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. /** Whether to remember which data was originally uploaded using this node.
* This prevents auto deletion of own files when storage limits are reached. */ * This prevents auto deletion of own files when storage limits are reached. */

Loading…
Cancel
Save