fix(register): set club on new
All checks were successful
Deploy Production Server / if_merged (pull_request) Successful in 6m17s

This commit is contained in:
Thibaut Valentin 2025-03-15 00:58:20 +01:00
parent fa17d0a037
commit 2db82d19f3

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);
}