Skip to content

Commit

Permalink
Fix "0" hashed hardware disk signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekuruu committed Dec 26, 2023
1 parent 7f10b44 commit 0ae6fdf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions database/repositories/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ def fetch_hardware_only(
DBClient.adapters == adapters,
DBClient.unique_id == unique_id
)) \
.filter(
# "0"
DBClient.disk_signature != "dcfcd07e645d245babe887e5e2daa016"
) \
.all()

@session_wrapper
Expand Down

0 comments on commit 0ae6fdf

Please sign in to comment.