fix artist color mapping

This commit is contained in:
cwilvx
2025-01-31 12:01:09 +03:00
parent b8ff6070f7
commit d6e8a09aeb
7 changed files with 29 additions and 20 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ def log_startup_info():
adresses = [FLASKVARS.get_flask_host()]
if FLASKVARS.get_flask_host() == "0.0.0.0":
adresses = ["localhost", get_ip()]
remote_ip = get_ip()
adresses = ["localhost"] + ([remote_ip] if remote_ip else [])
print("Started app on:")
for address in adresses: