From b22f061aa9ccc8f4ab84400f7a61edf23cb0a4b5 Mon Sep 17 00:00:00 2001 From: Loic Masi Date: Thu, 9 Apr 2026 13:10:21 +0200 Subject: [PATCH] #199 : Bug lors de la mis a jour d'un titre. --- Webzine.Business/TitreAdminService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;