summaryrefslogtreecommitdiff
path: root/src/client/clientmedia.h
diff options
context:
space:
mode:
authorsofar <sofar+github@foo-projects.org>2019-01-03 15:26:08 -0800
committerLoïc Blot <nerzhul@users.noreply.github.com>2019-01-04 00:26:08 +0100
commitcf224c9d6b72f81d19e9b2eca9d23f589b6a1392 (patch)
treed9f3ae4a72770b5ba72fea9b3a7e9da9f8b051ca /src/client/clientmedia.h
parentbba4563d89b6708d75a4053c69873dff0d747538 (diff)
downloadminetest-cf224c9d6b72f81d19e9b2eca9d23f589b6a1392.tar.gz
minetest-cf224c9d6b72f81d19e9b2eca9d23f589b6a1392.tar.bz2
minetest-cf224c9d6b72f81d19e9b2eca9d23f589b6a1392.zip
Remove remote media compatibility mode. (#8044)
The fallback code shouldn't be needed and is a remnant of the GET method that old media servers use. Clients using it are likely to just waste bandwidth and having to download the media again through the normal transfer from server method. The most reliable method is to get all missing textures therefore from the server directly and not spam the remote media server with 404s.
Diffstat (limited to 'src/client/clientmedia.h')
-rw-r--r--src/client/clientmedia.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/clientmedia.h b/src/client/clientmedia.h
index b08b83e4d..92831082c 100644
--- a/src/client/clientmedia.h
+++ b/src/client/clientmedia.h
@@ -92,7 +92,6 @@ private:
struct RemoteServerStatus {
std::string baseurl;
s32 active_count;
- bool request_by_filename;
};
void initialStep(Client *client);