From f264e947bc9ec31288f40aa9821c8e1a2e87d89e Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Sat, 29 Nov 2025 12:25:36 -0500 Subject: [PATCH] Update app.py --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index de7375c..6bdd07b 100644 --- a/app.py +++ b/app.py @@ -9,7 +9,7 @@ UPLOAD_FOLDER = 'temp_uploads' app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER SECRET_TOKEN = "REDACTED" -ALLOWED_ORIGIN = "https://streetpass.venith.net" +ALLOWED_ORIGIN = "https://streetpass.veltron.net" @app.route('/') def main(): @@ -65,7 +65,7 @@ def upload_json(): { "type": "downloadFile", "hash": file_hash, - "file": f"http://streetpass.venith.net/downloadFile/{new_filename}", + "file": f"http://streetpass.veltron.net/downloadFile/{new_filename}", "message": "Downloading StreetPass Data... Make sure to run the StreetPass2 GodMode9 script by Noxious Ninja!", "output": f"sdmc:/gm9/in/streetpass/{new_filename}" } @@ -77,7 +77,7 @@ def upload_json(): with open("demoData.json", "w") as json_file: json.dump(js_in, json_file, indent='\t') - return 'Please wait up to 3 hours for your StreetPass data to show in the shop. This is an automatic process. For any questions, check out http://gg.gg/venith_chat', 200 + return 'Please wait up to 3 hours for your StreetPass data to show in the shop. This is an automatic process. For any questions, check out http://discord.go.veltron.net', 200 # ... (@app.route('/testJson') def test_json():