mirror of https://github.com/CIRCL/AIL-framework
fix: [crawlers] fix errored capture start time
parent
2db8587d03
commit
fbd7e2236a
|
@ -1331,6 +1331,8 @@ class CrawlerCapture:
|
||||||
start_time = self.get_task().get_start_time()
|
start_time = self.get_task().get_start_time()
|
||||||
if r_str:
|
if r_str:
|
||||||
return start_time
|
return start_time
|
||||||
|
elif not start_time:
|
||||||
|
return 0
|
||||||
else:
|
else:
|
||||||
start_time = datetime.strptime(start_time, "%Y/%m/%d - %H:%M.%S").timestamp()
|
start_time = datetime.strptime(start_time, "%Y/%m/%d - %H:%M.%S").timestamp()
|
||||||
return int(start_time)
|
return int(start_time)
|
||||||
|
|
Loading…
Reference in New Issue