2
0
Fork 0
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:
meisnate12 2023-08-30 11:18:20 -04:00
parent 31befe7268
commit dcdb2c2c10
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
1.19.0-develop104
1.19.0-develop105

View file

@ -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)