mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-13 11:35:45 +00:00
Just use the current/previous md5
This commit is contained in:
@@ -450,8 +450,7 @@ class Worker(threading.Thread):
|
|||||||
app.logger.error("File permission error updating", uuid, str(s))
|
app.logger.error("File permission error updating", uuid, str(s))
|
||||||
else:
|
else:
|
||||||
if result:
|
if result:
|
||||||
|
|
||||||
result["previous_md5"] = result["current_md5"]
|
|
||||||
datastore.update_watch(uuid=uuid, update_obj=result)
|
datastore.update_watch(uuid=uuid, update_obj=result)
|
||||||
|
|
||||||
if contents:
|
if contents:
|
||||||
|
|||||||
@@ -89,6 +89,6 @@ class perform_site_check():
|
|||||||
update_obj["last_changed"] = timestamp
|
update_obj["last_changed"] = timestamp
|
||||||
|
|
||||||
|
|
||||||
update_obj["current_md5"] = fetched_md5
|
update_obj["previous_md5"] = fetched_md5
|
||||||
|
|
||||||
return update_obj, stripped_text_from_html
|
return update_obj, stripped_text_from_html
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ class ChangeDetectionStore:
|
|||||||
def save_history_text(self, uuid, result_obj, contents):
|
def save_history_text(self, uuid, result_obj, contents):
|
||||||
|
|
||||||
output_path = "{}/{}".format(self.datastore_path, uuid)
|
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:
|
with open(fname, 'w') as f:
|
||||||
f.write(contents)
|
f.write(contents)
|
||||||
f.close()
|
f.close()
|
||||||
|
|||||||
Reference in New Issue
Block a user