From fb66ecc4fb6100acc7b18869146d7919bcd73124 Mon Sep 17 00:00:00 2001 From: ThaaoBlues Date: Fri, 24 Jun 2022 09:43:21 +0200 Subject: [PATCH] fix url error --- copypasta.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/copypasta.py b/copypasta.py index f11bb4d..dc95f7b 100644 --- a/copypasta.py +++ b/copypasta.py @@ -73,13 +73,13 @@ def check_exe_name(): # copypasta url -if is_hosts_file_modified(): +if not is_hosts_file_modified(): COPYPASTA_URL = "copypasta.me" if system() == "Windows" else "copypasta.me:21987" else: - COPYPASTA_URL = "127.0.0.1:21987" + COPYPASTA_URL = "http://127.0.0.1:21987" #necessary to update images (stack overflow) @app.after_request