Enable custom media IDs by default in plugin configuration

This commit is contained in:
CodeDevMLH
2026-01-08 02:59:42 +01:00
parent d737bc9422
commit 1ee4aaefb5

View File

@@ -30,7 +30,7 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Configuration
public bool EnableKeyboardControls { get; set; } = true;
public bool AlwaysShowArrows { get; set; } = false;
public string CustomMediaIds { get; set; } = "";
public bool EnableCustomMediaIds { get; set; } = false;
public bool EnableCustomMediaIds { get; set; } = true;
public bool EnableSeasonalContent { get; set; } = false;
public bool IsEnabled { get; set; } = true;
}