mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
fixed wrong file name for tokenfile
This commit is contained in:
parent
4e185ea612
commit
48c41bb3dc
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ def get_hmac_salt(dxcallsign: bytes, mycallsign: bytes):
|
|||
|
||||
def search_hmac_salt(dxcallsign: bytes, mycallsign: bytes, search_token, data_frame, token_iters):
|
||||
|
||||
filename = f"freedata_hmac_STATION_{dxcallsign.decode('utf-8')}_REMOTE_{mycallsign.decode('utf-8')}.txt"
|
||||
filename = f"freedata_hmac_STATION_{mycallsign.decode('utf-8')}_REMOTE_{dxcallsign.decode('utf-8')}.txt"
|
||||
if sys.platform == "linux":
|
||||
|
||||
filepath = './hmac/' + filename
|
||||
|
|
Loading…
Reference in a new issue