1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 16:23:13 +02:00

For failed downloads, where we have a cached copy present, i forgot

to read the (cached) remote include file so it did not check if it
included another remote include.
This commit is contained in:
Bram Matthys
2021-08-19 09:53:31 +02:00
parent 5321dcb81b
commit f95e799397
+3
View File
@@ -10718,7 +10718,10 @@ void resource_download_complete(const char *url, const char *file, const char *e
unreal_copyfileex(file, cache_file, 1);
safe_strdup(rs->file, cache_file);
}
}
if (rs->file)
{
if (rs->type & RESOURCE_INCLUDE)
{
config_read_file(rs->file, rs->url);