1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2025-01-11 04:25:53 +00:00

MinDiskFree value should be float, not int (fixes #901)

This commit is contained in:
Felix Ableitner 2017-06-07 17:07:23 +09:00
parent 7f6d72d0fa
commit 755e581eb3

View file

@ -40,7 +40,7 @@ public class Folder {
} }
public static class MinDiskFree { public static class MinDiskFree {
public int value; public float value;
public String unit; public String unit;
} }