From 3cc4fd82408122af91d8d32cbebe8fa800847eb4 Mon Sep 17 00:00:00 2001 From: Henry Date: Sun, 4 Jan 2026 19:16:32 +0100 Subject: [PATCH] feat: added that Episode gets set to 1 when changing the Season --- CouchLog/Components/Pages/PrivateList.razor | 1 + 1 file changed, 1 insertion(+) diff --git a/CouchLog/Components/Pages/PrivateList.razor b/CouchLog/Components/Pages/PrivateList.razor index 23e1433..bd5bc47 100644 --- a/CouchLog/Components/Pages/PrivateList.razor +++ b/CouchLog/Components/Pages/PrivateList.razor @@ -198,6 +198,7 @@ if(int.TryParse(newSeasonValue?.ToString(), out int newSeason)) { entity.Season = newSeason; + entity.Episode = 1; await CouchLogDB.SaveChangesAsync(); } -- 2.49.1