mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 16:52:56 -07:00
Fixed #2224
This commit is contained in:
parent
cd60035bde
commit
794ce21123
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ namespace Ombi.Schedule.Processor
|
||||||
{
|
{
|
||||||
var newUpdate = new UpdateModel
|
var newUpdate = new UpdateModel
|
||||||
{
|
{
|
||||||
UpdateVersionString = release.Version,
|
UpdateVersionString = release.Version.Substring(1,8),
|
||||||
UpdateVersion = release.Version == "(unreleased)" ? 0 : int.Parse(release.Version.Substring(1, 5).Replace(".", "")),
|
UpdateVersion = release.Version == "(unreleased)" ? 0 : int.Parse(release.Version.Substring(1, 5).Replace(".", "")),
|
||||||
UpdateDate = DateTime.Now,
|
UpdateDate = DateTime.Now,
|
||||||
ChangeLogs = new List<ChangeLog>(),
|
ChangeLogs = new List<ChangeLog>(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue