From 25e678af8da1b5c2d4a546a14c6dc4b6d56281c1 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Sat, 28 Feb 2026 03:48:05 +0100 Subject: [PATCH] Fix default balloon count in birthday configuration from 15 to 12 [skip ci] --- Jellyfin.Plugin.Seasonals/Web/birthday.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Plugin.Seasonals/Web/birthday.js b/Jellyfin.Plugin.Seasonals/Web/birthday.js index 935131e..ad94d9b 100644 --- a/Jellyfin.Plugin.Seasonals/Web/birthday.js +++ b/Jellyfin.Plugin.Seasonals/Web/birthday.js @@ -1,7 +1,7 @@ const config = window.SeasonalsPluginConfig?.Birthday || {}; const birthday = config.EnableBirthday !== undefined ? config.EnableBirthday : true; // enable/disable birthday symbols -const symbolCount = config.SymbolCount !== undefined ? config.SymbolCount : 15; // count of balloons +const symbolCount = config.SymbolCount !== undefined ? config.SymbolCount : 12; // count of balloons const enableDifferentDuration = config.EnableDifferentDuration !== undefined ? config.EnableDifferentDuration : true; // enable different duration for the symbols const symbolCountMobile = config.SymbolCountMobile !== undefined ? config.SymbolCountMobile : 5; // count of mobile balloons const baseConfettiCount = config.ConfettiCount !== undefined ? config.ConfettiCount : 60; // count of confetti