initialize storage limits

This commit is contained in:
Peter Hormanns 2021-08-18 10:15:55 +02:00
parent 2ded642fea
commit f2f35d5b91

View File

@ -117,6 +117,12 @@ public class UnixUser extends AbstractEntity implements Serializable {
if (quotaHardlimit == null) {
quotaHardlimit = Integer.valueOf(0);
}
if (storageSoftlimit == null) {
storageSoftlimit = Integer.valueOf(0);
}
if (storageHardlimit == null) {
storageHardlimit = Integer.valueOf(0);
}
}
public static String createQueryFromStringKey(String humanKey) {