Skip to content

Commit

Permalink
dig utility name discovery work #534
Browse files Browse the repository at this point in the history
  • Loading branch information
jokob-sk committed Jan 18, 2024
1 parent b354e72 commit 508b0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pialert/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def resolve_device_name_dig (pMAC, pIP):
# Cleanup
newName = cleanDeviceName(newName, True)

if newName == "" or len(newName) == 0 or newName == '-1' or newName == -1 or "communications error" in newName:
if newName == "" or len(newName) == 0 or newName == '-1' or newName == -1 or "communications error" in newName or 'malformed message packet' in newName :
return nameNotFound

# all checks passed
Expand Down

0 comments on commit 508b0c2

Please sign in to comment.