aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Core/IO/LibraryMonitor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Core/IO/LibraryMonitor.cs')
-rw-r--r--Emby.Server.Core/IO/LibraryMonitor.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Core/IO/LibraryMonitor.cs b/Emby.Server.Core/IO/LibraryMonitor.cs
index ae7b66597..a5b2e2555 100644
--- a/Emby.Server.Core/IO/LibraryMonitor.cs
+++ b/Emby.Server.Core/IO/LibraryMonitor.cs
@@ -453,7 +453,7 @@ namespace Emby.Server.Core.IO
// If the parent of an ignored path has a change event, ignore that too
if (tempIgnorePaths.Any(i =>
{
- if (string.Equals(i, path, StringComparison.OrdinalIgnoreCase))
+ if (_fileSystem.AreEqual(i, path))
{
Logger.Debug("Ignoring change to {0}", path);
return true;
@@ -469,7 +469,7 @@ namespace Emby.Server.Core.IO
var parent = Path.GetDirectoryName(i);
if (!string.IsNullOrEmpty(parent))
{
- if (string.Equals(parent, path, StringComparison.OrdinalIgnoreCase))
+ if (_fileSystem.AreEqual(parent, path))
{
Logger.Debug("Ignoring change to {0}", path);
return true;
@@ -500,7 +500,7 @@ namespace Emby.Server.Core.IO
foreach (var refresher in refreshers)
{
// Path is already being refreshed
- if (string.Equals(path, refresher.Path, StringComparison.Ordinal))
+ if (_fileSystem.AreEqual(path, refresher.Path))
{
refresher.RestartTimer();
return;