|
@@ -969,6 +969,7 @@ public class OrgController extends ControllerSupport {
|
|
fileEntity.setOrgId(orgId);
|
|
fileEntity.setOrgId(orgId);
|
|
}
|
|
}
|
|
fileEntity.setValue(hexString);
|
|
fileEntity.setValue(hexString);
|
|
|
|
+ orgPropertyRepo.save(fileEntity);
|
|
|
|
|
|
OrgPropertyEntity fileSuffixEntity = orgPropertyRepo.findByOrgIdAndKeyId(orgId,
|
|
OrgPropertyEntity fileSuffixEntity = orgPropertyRepo.findByOrgIdAndKeyId(orgId,
|
|
logoFileSuffix.getId());
|
|
logoFileSuffix.getId());
|
|
@@ -979,7 +980,7 @@ public class OrgController extends ControllerSupport {
|
|
}
|
|
}
|
|
fileSuffixEntity.setValue(fileSuffix);
|
|
fileSuffixEntity.setValue(fileSuffix);
|
|
|
|
|
|
- orgPropertyRepo.save(fileEntity);
|
|
|
|
|
|
+ orgPropertyRepo.save(fileSuffixEntity);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|