🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    changedetectionio/store.py
    skipped 300 lines
    301 301   del_timestamps.append(timestamp)
    302 302   changes_removed += 1
    303 303   
    304  - if not limit_timestamp:
    305  - self.data['watching'][uuid]['last_checked'] = 0
    306  - self.data['watching'][uuid]['last_changed'] = 0
    307  - self.data['watching'][uuid]['previous_md5'] = 0
     304 + if not limit_timestamp:
     305 + self.data['watching'][uuid]['last_checked'] = 0
     306 + self.data['watching'][uuid]['last_changed'] = 0
     307 + self.data['watching'][uuid]['previous_md5'] = ""
    308 308   
    309 309   
    310 310   for timestamp in del_timestamps:
    skipped 12 lines
    323 323   content = fp.read()
    324 324   self.data['watching'][uuid]['previous_md5'] = hashlib.md5(content).hexdigest()
    325 325   except (FileNotFoundError, IOError):
    326  - self.data['watching'][uuid]['previous_md5'] = False
     326 + self.data['watching'][uuid]['previous_md5'] = ""
    327 327   pass
    328 328   
    329 329   self.needs_write = True
    skipped 116 lines
  • ■ ■ ■ ■
    changedetectionio/update_worker.py
    skipped 59 lines
    60 60   self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text,
    61 61   'last_check_status': e.status_code})
    62 62   except Exception as e:
    63  - self.app.logger.error("Exception reached processing watch UUID:%s - %s", uuid, str(e))
     63 + self.app.logger.error("Exception reached processing watch UUID: %s - %s", uuid, str(e))
    64 64   self.datastore.update_watch(uuid=uuid, update_obj={'last_error': str(e)})
    65 65   
    66 66   else:
    skipped 83 lines
Please wait...
Page is in error, reload to recover