From ed4c9c9d04805de4f985271381920510469221f0 Mon Sep 17 00:00:00 2001 From: Halhadus Date: Thu, 12 Dec 2024 01:54:39 +0300 Subject: [PATCH] Fixed music.db url on script for PyInstaller --- localwrapped-pyi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localwrapped-pyi.py b/localwrapped-pyi.py index ca64b7f..9820ff1 100644 --- a/localwrapped-pyi.py +++ b/localwrapped-pyi.py @@ -60,7 +60,7 @@ def get_music(): except: return None -def get_db_values(url: str = "https://halhadus.rocks/localwrapped/music.db"): +def get_db_values(url: str = "https://halhadus.rocks/assets/localwrapped/music.db"): if not os.path.exists(get_working_directory() + "/music.db"): try: download = requests.get(url)