mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00: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 @@ public override void Write(char value)
|
||||||
|
|
||||||
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…
Reference in a new issue