mirror of
https://github.com/evilhero/mylar
synced 2025-03-11 22:42:47 +00:00
FIX: notify on some cases of bad import data
This commit is contained in:
parent
0af13913ea
commit
38ee0e959b
1 changed files with 2 additions and 1 deletions
|
@ -4465,7 +4465,8 @@ class WebInterface(object):
|
||||||
movedata = []
|
movedata = []
|
||||||
|
|
||||||
for result in results:
|
for result in results:
|
||||||
if result is None:
|
if result is None or result == 'None':
|
||||||
|
logger.info('[IMPORT] Ultron gave me bad information, this issue wont import correctly: %s' & DynamicName)
|
||||||
break
|
break
|
||||||
|
|
||||||
if result['WatchMatch']:
|
if result['WatchMatch']:
|
||||||
|
|
Loading…
Add table
Reference in a new issue