kopia lustrzana https://github.com/dgtlmoon/changedetection.io
Distill.io import bug fix when no tags assigned to a watch (#557)
rodzic
2566de2aae
commit
a2a1d5ae90
|
|
@ -92,7 +92,7 @@ class import_distill_io_json(Importer):
|
|||
|
||||
for d in data.get('data'):
|
||||
d_config = json.loads(d['config'])
|
||||
extras = {'title': d['name']}
|
||||
extras = {'title': d.get('name', None)}
|
||||
|
||||
if len(d['uri']) and good < 5000:
|
||||
try:
|
||||
|
|
@ -114,12 +114,9 @@ class import_distill_io_json(Importer):
|
|||
except IndexError:
|
||||
pass
|
||||
|
||||
try:
|
||||
|
||||
if d.get('tags', False):
|
||||
extras['tag'] = ", ".join(d['tags'])
|
||||
except KeyError:
|
||||
pass
|
||||
except IndexError:
|
||||
pass
|
||||
|
||||
new_uuid = datastore.add_watch(url=d['uri'].strip(),
|
||||
extras=extras,
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue