From 3d4e04ab0f49d28a64e764fbd3ee3d1694097198 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Fri, 27 Feb 2026 22:23:39 +0100 Subject: [PATCH] Change SymbolCountMobile property type from bool to int in seasonal options --- .../Configuration/PluginConfiguration.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs b/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs index ec96f2c..4c7828f 100644 --- a/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs +++ b/Jellyfin.Plugin.Seasonals/Configuration/PluginConfiguration.cs @@ -247,7 +247,7 @@ public class OktoberfestOptions { public class OlympiaOptions { public bool EnableOlympia { get; set; } = true; public int SymbolCount { get; set; } = 25; - public bool SymbolCountMobile { get; set; } = 10; + public int SymbolCountMobile { get; set; } = 10; public bool EnableDifferentDuration { get; set; } = true; } @@ -323,7 +323,7 @@ public class SpaceOptions { public int IssCount { get; set; } = 1; public int RocketCount { get; set; } = 1; public bool EnableDifferentDuration { get; set; } = true; - public bool SymbolCountMobile { get; set; } = 2; + public int SymbolCountMobile { get; set; } = 2; } public class SpookyOptions { @@ -354,7 +354,7 @@ public class SpringOptions { public int ButterflyCount { get; set; } = 4; public int BeeCount { get; set; } = 2; public int LadybugCount { get; set; } = 2; - public bool SymbolCountMobile { get; set; } = 2; + public int SymbolCountMobile { get; set; } = 2; } public class StarWarsOptions { @@ -373,13 +373,13 @@ public class SummerOptions { public bool EnableSummer { get; set; } = true; public int BubbleCount { get; set; } = 30; public int DustCount { get; set; } = 50; - public bool SymbolCountMobile { get; set; } = 2; + public int SymbolCountMobile { get; set; } = 2; public bool EnableDifferentDuration { get; set; } = true; } public class UnderwaterOptions { public bool EnableUnderwater { get; set; } = true; - public bool SymbolCountMobile { get; set; } = 2; + public int SymbolCountMobile { get; set; } = 2; public bool EnableDifferentDuration { get; set; } = true; public bool EnableLightRays { get; set; } = true; public int SeaweedCount { get; set; } = 50;