From 38226f149ac7d227445b2524d9b97d90c4e00046 Mon Sep 17 00:00:00 2001 From: SimplifiedPrivacy Date: Fri, 15 May 2026 20:10:08 -0400 Subject: [PATCH] Fixed Key saving bug --- core/services/prepare_tickets/get_pub_key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/services/prepare_tickets/get_pub_key.py b/core/services/prepare_tickets/get_pub_key.py index 0ec7b82..27168e0 100644 --- a/core/services/prepare_tickets/get_pub_key.py +++ b/core/services/prepare_tickets/get_pub_key.py @@ -37,7 +37,7 @@ def get_from_server_and_save( if status == True: # extract: - public_key = public_key_results.get("valid", False) + public_key = public_key_results.get("data", False) # save it: did_it_save = write_string_to_text_file(public_key, file_path)