mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 07:55:22 +02:00
Fixed some issue around path normalization.
This commit is contained in:
@@ -179,9 +179,7 @@ namespace NzbDrone.Core.Providers
|
||||
|
||||
public virtual bool SeriesPathExists(string path)
|
||||
{
|
||||
var normilizedPath = path.NormalizePath();
|
||||
|
||||
return GetAllSeries().Any(s => s.Path.NormalizePath() == normilizedPath);
|
||||
return GetAllSeries().Any(s => DiskProvider.PathEquals(s.Path, path));
|
||||
}
|
||||
|
||||
public virtual List<Series> SearchForSeries(string title)
|
||||
|
Reference in New Issue
Block a user