Add more artist names to the splitting whitelist

This commit is contained in:
MrTimscampi 2021-07-10 17:04:00 +02:00
parent c47390914c
commit 020c0fc4cb
1 changed files with 10 additions and 1 deletions

View File

@ -39,7 +39,16 @@ namespace MediaBrowser.MediaEncoding.Probing
_localization = localization;
}
private IReadOnlyList<string> SplitWhitelist => _splitWhiteList ??= new string[] { "AC/DC" };
private IReadOnlyList<string> SplitWhitelist => _splitWhiteList ??= new string[]
{
"AC/DC",
"Au/Ra",
"이달의 소녀 1/3",
"LOONA 1/3",
"LOONA / yyxy",
"LOONA / ODD EYE CIRCLE",
"KD/A"
};
public MediaInfo GetMediaInfo(InternalMediaInfoResult data, VideoType? videoType, bool isAudio, string path, MediaProtocol protocol)
{