mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
24 lines
549 B
C#
24 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public class PathEqualityComparer : IEqualityComparer<String>
|
|
{
|
|
public bool Equals(string x, string y)
|
|
{
|
|
return x.PathEquals(y);
|
|
}
|
|
|
|
public int GetHashCode(string obj)
|
|
{
|
|
if (OsInfo.IsLinux)
|
|
{
|
|
return obj.CleanFilePath().GetHashCode();
|
|
}
|
|
|
|
return obj.CleanFilePath().ToLower().GetHashCode();
|
|
}
|
|
}
|
|
}
|