#199 : Bug lors de la mis a jour d'un titre.

This commit is contained in:
Loic Masi
2026-04-09 13:10:21 +02:00
parent 031b4d6ad4
commit b22f061aa9

View File

@@ -84,7 +84,7 @@ public class TitreAdminService : ITitreAdminService
existant.Libelle = commande.Libelle; existant.Libelle = commande.Libelle;
existant.Album = commande.Album; existant.Album = commande.Album;
existant.Chronique = commande.Chronique; existant.Chronique = commande.Chronique;
existant.DateSortie = commande.DateSortie; existant.DateSortie = DateTime.SpecifyKind(commande.DateSortie, DateTimeKind.Utc);
existant.Duree = commande.Duree; existant.Duree = commande.Duree;
existant.UrlJaquette = commande.UrlJaquette; existant.UrlJaquette = commande.UrlJaquette;
existant.UrlEcoute = commande.UrlEcoute ?? string.Empty; existant.UrlEcoute = commande.UrlEcoute ?? string.Empty;