Merge pull request 'fix(register): set club on new' (#37) from dev into master

Reviewed-on: #37
This commit is contained in:
Thibaut Valentin 2025-03-15 01:00:06 +01:00
commit 7a574f4531

View File

@ -226,7 +226,7 @@ public class CompetitionService {
(combModel.getBirth_date() == null) ? combModel.getCategorie() :
Utils.getCategoryFormBirthDate(combModel.getBirth_date(),
c.getDate()),
(combModel.getClub() == null) ? null : c.getClub());
(combModel.getClub() == null) ? null : combModel.getClub());
insc.add(r);
}