Skip to content

Commit

Permalink
key signing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
khast3x committed Jan 24, 2020
1 parent 12409b4 commit 9eda8cd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion h8mail/utils/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,6 @@ def get_dehashed(self, api_email, api_key, user_query):
if req.status_code == 200:
response = req.json()
for result in response["entries"]:
# Maybe instead first check len of content - does it break if None?
if "username" in result and result["username"] is not None and len(result["username"].strip()) > 0:
self.data.append(("DHASHD_USERNAME", result["username"]))
if "email" in result and self.not_exists(result["email"]) and result["email"] is not None and len(result["email"].strip()) > 0:
Expand Down

0 comments on commit 9eda8cd

Please sign in to comment.