From bda7f3c45b7f490cfbd94616da369e60deb64a87 Mon Sep 17 00:00:00 2001 From: Corentin LEMAIRE Date: Sat, 13 May 2023 10:37:08 +0200 Subject: [PATCH] Fix critical issue --- Sources/Model/Artiste.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Model/Artiste.cs b/Sources/Model/Artiste.cs index bc2a9b3..e4626ba 100644 --- a/Sources/Model/Artiste.cs +++ b/Sources/Model/Artiste.cs @@ -21,7 +21,7 @@ public class Artiste { get { - return albums.ToList(); + return new List(albums); } }