mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed: Case insensitive paths for static resources under Windows
This commit is contained in:
parent
d3aa032cf5
commit
a1bf1b99f5
1 changed files with 3 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Nancy;
|
using Nancy;
|
||||||
using Nancy.Responses;
|
using Nancy.Responses;
|
||||||
|
@ -21,10 +21,7 @@ namespace Lidarr.Http.Frontend.Mappers
|
||||||
_diskProvider = diskProvider;
|
_diskProvider = diskProvider;
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
|
|
||||||
if (!RuntimeInfo.IsProduction)
|
_caseSensitive = RuntimeInfo.IsProduction ? DiskProviderBase.PathStringComparison : StringComparison.OrdinalIgnoreCase;
|
||||||
{
|
|
||||||
_caseSensitive = StringComparison.OrdinalIgnoreCase;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract string Map(string resourceUrl);
|
public abstract string Map(string resourceUrl);
|
||||||
|
@ -52,4 +49,4 @@ namespace Lidarr.Http.Frontend.Mappers
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue