2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Collections.Generic;
|
2020-03-24 08:12:06 -07:00
|
|
|
using System.Linq;
|
2021-06-12 02:22:26 -07:00
|
|
|
using Diacritics.Extensions;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
|
|
{
|
|
|
|
public static class NameExtensions
|
|
|
|
{
|
2021-03-10 00:20:02 -07:00
|
|
|
public static IEnumerable<string> DistinctNames(this IEnumerable<string> names)
|
|
|
|
=> names.GroupBy(RemoveDiacritics, StringComparer.OrdinalIgnoreCase)
|
|
|
|
.Select(x => x.First());
|
|
|
|
|
2020-09-20 05:02:41 -07:00
|
|
|
private static string RemoveDiacritics(string? name)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
if (name == null)
|
|
|
|
{
|
|
|
|
return string.Empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
return name.RemoveDiacritics();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|