parent
f580acaf70
commit
f3ee2d2bfd
1 changed files with 5 additions and 1 deletions
|
|
@ -73,7 +73,11 @@ def configureTimelapse(config=None, persist=False):
|
|||
current.unload()
|
||||
|
||||
type = config["type"]
|
||||
postRoll = config["postRoll"]
|
||||
|
||||
postRoll = 0
|
||||
if "postRoll" in config:
|
||||
postRoll = config["postRoll"]
|
||||
|
||||
if type is None or "off" == type:
|
||||
current = None
|
||||
elif "zchange" == type:
|
||||
|
|
|
|||
Loading…
Reference in a new issue