Skip to content

Commit

Permalink
Merge pull request kevoreilly#1998 from enzok/patch-1
Browse files Browse the repository at this point in the history
Fix file name
  • Loading branch information
doomedraven authored Mar 6, 2024
2 parents 76754ee + 78223da commit 1b03234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/processing/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ def run(self):
req_sha1 = sha1(sent.body).hexdigest()
req_sha256 = sha256(sent.body).hexdigest()

req_path = os.path.join(self.network_path, req_sha1)
req_path = os.path.join(self.network_path, req_sha256)
_ = path_write_file(req_path, sent.body)

# It's not perfect yet, but it'll have to do.
Expand Down

0 comments on commit 1b03234

Please sign in to comment.