Just use the current/previous md5

This commit is contained in:
Leigh Morresi
2021-02-21 13:46:16 +01:00
parent 1718e2e86f
commit b0c5dbd88e
3 changed files with 3 additions and 4 deletions

View File

@@ -451,7 +451,6 @@ class Worker(threading.Thread):
else:
if result:
result["previous_md5"] = result["current_md5"]
datastore.update_watch(uuid=uuid, update_obj=result)
if contents:

View File

@@ -89,6 +89,6 @@ class perform_site_check():
update_obj["last_changed"] = timestamp
update_obj["current_md5"] = fetched_md5
update_obj["previous_md5"] = fetched_md5
return update_obj, stripped_text_from_html

View File

@@ -198,7 +198,7 @@ class ChangeDetectionStore:
def save_history_text(self, uuid, result_obj, contents):
output_path = "{}/{}".format(self.datastore_path, uuid)
fname = "{}/{}-{}.stripped.txt".format(output_path, result_obj['current_md5'], str(time.time()))
fname = "{}/{}-{}.stripped.txt".format(output_path, result_obj['previous_md5'], str(time.time()))
with open(fname, 'w') as f:
f.write(contents)
f.close()