mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 16:22:55 -07:00
fix bug causing wrong time to be displayed for next request
This commit is contained in:
parent
243dc99633
commit
69cf31f66b
2 changed files with 2 additions and 2 deletions
|
@ -516,7 +516,7 @@ namespace Ombi.Core.Engine
|
|||
HasLimit = true,
|
||||
Limit = limit,
|
||||
Remaining = count,
|
||||
NextRequest = oldestRequestedAt.AddDays(7),
|
||||
NextRequest = DateTime.SpecifyKind(oldestRequestedAt.AddDays(7), DateTimeKind.Utc),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -652,7 +652,7 @@ namespace Ombi.Core.Engine
|
|||
HasLimit = true,
|
||||
Limit = limit,
|
||||
Remaining = count,
|
||||
NextRequest = oldestRequestedAt.AddDays(7),
|
||||
NextRequest = DateTime.SpecifyKind(oldestRequestedAt.AddDays(7), DateTimeKind.Utc),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue