From 0b881bffbb9c9c261998fe71ed9e99cad68a4311 Mon Sep 17 00:00:00 2001 From: baliasnyifeliks Date: Tue, 3 Feb 2026 21:22:10 +0200 Subject: [PATCH] fix(makhno): correct season numbering to start from 1 --- Makhno/Controller.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makhno/Controller.cs b/Makhno/Controller.cs index 73d81e4..b777b30 100644 --- a/Makhno/Controller.cs +++ b/Makhno/Controller.cs @@ -245,10 +245,11 @@ namespace Makhno if (!string.IsNullOrEmpty(episode.File)) { string streamUrl = BuildStreamUrl(init, episode.File); + int seasonNumber = season + 1; episode_tpl.Append( episode.Title, title ?? original_title, - season.ToString(), + seasonNumber.ToString(), (i + 1).ToString("D2"), streamUrl );