From 972d052c67f76887a4e26284f3170d6eb8084da7 Mon Sep 17 00:00:00 2001 From: ThatAwesomeGuy173 Date: Sat, 9 May 2020 06:06:21 -0600 Subject: [PATCH] Display refusal message if there is no HTTP source and internal downloads are disabled --- src/d_clisrv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index 39432d1a7..251f413ab 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -2131,6 +2131,9 @@ static boolean CL_ServerConnectionTicker(boolean viams, const char *tmpsave, tic if (curl_failedwebdownload && !curl_transfers) { + if (!CL_FinishedFileList()) + break; + CONS_Printf("One or more files failed to download, falling back to internal downloader\n"); if (CL_SendRequestFile()) {