mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
http redirect is similar to file not found
This commit is contained in:
parent
58112a6407
commit
d7b84e3ca3
1 changed files with 4 additions and 0 deletions
|
@ -786,6 +786,10 @@ SV_BeginDownload_f (void *unused)
|
|||
ren ? realname->str : name));
|
||||
MSG_ReliableWrite_String (&host_client->backbuf,
|
||||
ren ? realname->str : "");
|
||||
if (host_client->download) {
|
||||
Qclose (host_client->download);
|
||||
host_client->download = NULL;
|
||||
}
|
||||
} else {
|
||||
if (zip && strcmp (realname->str, name)) {
|
||||
SV_Printf ("download renamed to %s\n", realname->str);
|
||||
|
|
Loading…
Reference in a new issue