diff --git a/Jellyfin.Server/Migrations/Routines/AddDefaultCastReceivers.cs b/Jellyfin.Server/Migrations/Routines/AddDefaultCastReceivers.cs index 75a6a6176c..57a5c8a623 100644 --- a/Jellyfin.Server/Migrations/Routines/AddDefaultCastReceivers.cs +++ b/Jellyfin.Server/Migrations/Routines/AddDefaultCastReceivers.cs @@ -32,24 +32,20 @@ public class AddDefaultCastReceivers : IMigrationRoutine /// public void Perform() { - // Only add if receiver list is empty. - if (_serverConfigurationManager.Configuration.CastReceiverApplications.Length == 0) - { - _serverConfigurationManager.Configuration.CastReceiverApplications = new CastReceiverApplication[] + _serverConfigurationManager.Configuration.CastReceiverApplications = + [ + new() { - new() - { - Id = "F007D354", - Name = "Stable" - }, - new() - { - Id = "6F511C87", - Name = "Unstable" - } - }; + Id = "F007D354", + Name = "Stable" + }, + new() + { + Id = "6F511C87", + Name = "Unstable" + } + ]; - _serverConfigurationManager.SaveConfiguration(); - } + _serverConfigurationManager.SaveConfiguration(); } }