1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2025-01-10 20:15:54 +00:00

Always set ignorePerms when creating a new folder (fixes #821)

This commit is contained in:
Felix Ableitner 2016-12-23 11:36:35 +09:00
parent 4a30bd51ae
commit bb61358b4a

View file

@ -15,7 +15,7 @@ public class Folder {
public String type; public String type;
public List<Device> devices = new ArrayList<>(); public List<Device> devices = new ArrayList<>();
public int rescanIntervalS; public int rescanIntervalS;
public boolean ignorePerms; public final boolean ignorePerms = true;
public boolean autoNormalize; public boolean autoNormalize;
public int minDiskFreePct; public int minDiskFreePct;
public Versioning versioning; public Versioning versioning;