bridge/block: now using hashed fingerprint as identifier
This commit is contained in:
parent
0ee7aa3149
commit
5b41a89b40
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ def check_blocks():
|
||||||
continue
|
continue
|
||||||
if int(parts[1]) < 40:
|
if int(parts[1]) < 40:
|
||||||
bridge = Bridge.query.filter(
|
bridge = Bridge.query.filter(
|
||||||
Bridge.nickname == parts[0]
|
Bridge.hashed_fingerprint == parts[0]
|
||||||
).first()
|
).first()
|
||||||
if bridge is not None:
|
if bridge is not None:
|
||||||
bridge.deprecate()
|
bridge.deprecate()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue