Fix peer loading
This commit is contained in:
parent
c88152cac2
commit
9a9a8bfdc7
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class ContentDbPlugin(object):
|
||||||
if not peer: # Already exist
|
if not peer: # Already exist
|
||||||
continue
|
continue
|
||||||
if row["hashfield"]:
|
if row["hashfield"]:
|
||||||
peer.hashfield.replaceFromString(row["hashfield"])
|
peer.hashfield.replaceFromBytes(row["hashfield"])
|
||||||
num_hashfield += 1
|
num_hashfield += 1
|
||||||
peer.time_added = row["time_added"]
|
peer.time_added = row["time_added"]
|
||||||
peer.time_found = row["time_found"]
|
peer.time_found = row["time_found"]
|
||||||
|
|
Loading…
Reference in a new issue