diff --git a/Webzine.Business/TitreAdminService.cs b/Webzine.Business/TitreAdminService.cs index 3caffd5..cca5c48 100644 --- a/Webzine.Business/TitreAdminService.cs +++ b/Webzine.Business/TitreAdminService.cs @@ -84,7 +84,7 @@ public class TitreAdminService : ITitreAdminService existant.Libelle = commande.Libelle; existant.Album = commande.Album; existant.Chronique = commande.Chronique; - existant.DateSortie = commande.DateSortie; + existant.DateSortie = DateTime.SpecifyKind(commande.DateSortie, DateTimeKind.Utc); existant.Duree = commande.Duree; existant.UrlJaquette = commande.UrlJaquette; existant.UrlEcoute = commande.UrlEcoute ?? string.Empty;