We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d578af commit 32da713Copy full SHA for 32da713
mlapi.py
@@ -132,6 +132,9 @@ def post(self):
132
g.logger.Debug(4, 'Overriding global {} with {}'.format(key, g.monitor_config[mid][key]))
133
g.config[key] = g.monitor_config[mid][key]
134
135
+ # stupid mlapi and zm_detect config incompatibility
136
+ if not g.config.get('image_path') and g.config.get('images_path'):
137
+ g.config['image_path'] = g.config['images_path']
138
139
# At this stage, polygons has a copy of that monitor polygon set
140
# g.config has overriden values of config from the mid
0 commit comments