mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Actually make it lower case...
This commit is contained in:
parent
6ab629ea98
commit
8b7eedf6f9
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ namespace NzbDrone.Host.Owin
|
||||||
|
|
||||||
private LogLevel GetLogLevel(string value)
|
private LogLevel GetLogLevel(string value)
|
||||||
{
|
{
|
||||||
var lower = value;
|
var lower = value.ToLowerInvariant();
|
||||||
|
|
||||||
if (!lower.Contains("error"))
|
if (!lower.Contains("error"))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue