From 6519da0d9f502514bf15bebd0c84352f3f2df25f 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 39432d1a..251f413a 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()) {