mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-03-03 06:47:30 +00:00
[105] fix hourly range
This commit is contained in:
parent
31befe7268
commit
dcdb2c2c10
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.19.0-develop104
|
||||
1.19.0-develop105
|
||||
|
|
|
@ -604,7 +604,7 @@ def schedule_check(attribute, data, current_time, run_hour, is_all=False):
|
|||
param = match.group(1)
|
||||
if run_time.startswith("hour"):
|
||||
if "-" in run_time:
|
||||
start, end = run_time.split("-")
|
||||
start, end = param.split("-")
|
||||
try:
|
||||
start = int(start)
|
||||
end = int(end)
|
||||
|
|
Loading…
Add table
Reference in a new issue