Merge branch 'feat/server-threading' of github.com:aclist/dzgui-devel into feat/server-threading

This commit is contained in:
aclist 2026-01-15 00:49:31 +09:00
commit 2788abb755
2 changed files with 2 additions and 2 deletions

View File

@ -18,5 +18,5 @@ def is_dayz_installed(config: Path) -> None:
PeFile.get_app_path(Path(path) / LIBRARYFOLDERS_PATH, APPID_DAYZ)
except Exception as e:
logger.critical(e)
EarlyAlertDialog(e)
EarlyAlertDialog(str(e))
sys.exit(1)

View File

@ -15,7 +15,7 @@ logger = logging.getLogger(__name__)
def get_latest_release() -> str | None:
tag = None
# TODO: check order; github often has gateway errors
for url in [CODEBERG_RELEASES, GITHUB_RELEASES]:
for url in [GITHUB_RELEASES, CODEBERG_RELEASES]:
try:
res = requests.get(url, timeout=REQUEST_TIMEOUT)
if res.status_code == 200: