mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-03 18:26:42 +00:00
Set Meridiem to Uppercase.
This commit is contained in:
parent
4e9f8bd2d0
commit
f1cf6ace73
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ namespace NzbDrone.Core.Providers
|
|||
if (String.IsNullOrEmpty(time))
|
||||
return String.Empty;
|
||||
|
||||
var dateTime = DateTime.Parse(time + " " + meridiem);
|
||||
var dateTime = DateTime.Parse(time + " " + meridiem.ToUpper());
|
||||
return dateTime.ToString("hh:mm tt");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue