From e0ec5dee30c8195139dc3d438b2d0db76138340c Mon Sep 17 00:00:00 2001 From: Dijkstra Date: Thu, 16 Jan 2025 09:35:17 +0100 Subject: [PATCH] fix: no longer crash when internet is unavailable --- utils.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index bf16367..baa2254 100644 --- a/utils.py +++ b/utils.py @@ -83,8 +83,11 @@ def save_dict_to_json(data_dict, file_path): def get_model_version_info(hash_value): api_url = f"https://civitai.com/api/v1/model-versions/by-hash/{hash_value}" - response = requests.get(api_url) - + try: + response = requests.get(api_url) + except Exception as e: + print(f"[Lora-Auto-Trigger] {e}") + return None if response.status_code == 200: return response.json() else: